diff options
| author | Ammar Askar <ammar@ammaraskar.com> | 2025-06-03 16:25:40 -0400 |
|---|---|---|
| committer | Ammar Askar <ammar@ammaraskar.com> | 2025-06-03 16:30:53 -0400 |
| commit | 67050779feee688ac383ec98dfabd7dcb57020ba (patch) | |
| tree | bca356ca4cb363a9a89a47044401eacbd96597b8 /src/d/actor/d_a_obj_coming.cpp | |
| parent | 4bf91cbfea65258b917cfc5dd60f909b2c9b715d (diff) | |
Auto-generate trivial process_method_funcs
Diffstat (limited to 'src/d/actor/d_a_obj_coming.cpp')
| -rw-r--r-- | src/d/actor/d_a_obj_coming.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/d/actor/d_a_obj_coming.cpp b/src/d/actor/d_a_obj_coming.cpp index ad2bb842..5d317eba 100644 --- a/src/d/actor/d_a_obj_coming.cpp +++ b/src/d/actor/d_a_obj_coming.cpp @@ -145,28 +145,28 @@ bool daObjComing::Act_c::_draw() { namespace daObjComing { namespace { /* 00001318-00001338 .text Mthd_Create__Q211daObjComing28@unnamed@d_a_obj_coming_cpp@FPv */ -cPhs_State Mthd_Create(void*) { - /* Nonmatching */ +cPhs_State Mthd_Create(void* i_this) { + return ((daObjComing::Act_c*)i_this)->_create(); } /* 00001338-0000135C .text Mthd_Delete__Q211daObjComing28@unnamed@d_a_obj_coming_cpp@FPv */ -BOOL Mthd_Delete(void*) { - /* Nonmatching */ +BOOL Mthd_Delete(void* i_this) { + return ((daObjComing::Act_c*)i_this)->_delete(); } /* 0000135C-00001380 .text Mthd_Execute__Q211daObjComing28@unnamed@d_a_obj_coming_cpp@FPv */ -BOOL Mthd_Execute(void*) { - /* Nonmatching */ +BOOL Mthd_Execute(void* i_this) { + return ((daObjComing::Act_c*)i_this)->_execute(); } /* 00001380-000013A4 .text Mthd_Draw__Q211daObjComing28@unnamed@d_a_obj_coming_cpp@FPv */ -BOOL Mthd_Draw(void*) { - /* Nonmatching */ +BOOL Mthd_Draw(void* i_this) { + return ((daObjComing::Act_c*)i_this)->_draw(); } /* 000013A4-000013AC .text Mthd_IsDelete__Q211daObjComing28@unnamed@d_a_obj_coming_cpp@FPv */ BOOL Mthd_IsDelete(void*) { - /* Nonmatching */ + return TRUE; } static actor_method_class Mthd_Table = { |
