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_bigelf.cpp | |
| parent | 4bf91cbfea65258b917cfc5dd60f909b2c9b715d (diff) | |
Auto-generate trivial process_method_funcs
Diffstat (limited to 'src/d/actor/d_a_bigelf.cpp')
| -rw-r--r-- | src/d/actor/d_a_bigelf.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/d/actor/d_a_bigelf.cpp b/src/d/actor/d_a_bigelf.cpp index cbf09e07..fcdde6d8 100644 --- a/src/d/actor/d_a_bigelf.cpp +++ b/src/d/actor/d_a_bigelf.cpp @@ -303,17 +303,17 @@ void daBigelf_c::wait_action(void*) { } /* 00002C8C-00002DB4 .text _draw__10daBigelf_cFv */ -bool daBigelf_c::_draw() { +BOOL daBigelf_c::_draw() { /* Nonmatching */ } /* 00002DB4-00002F5C .text _execute__10daBigelf_cFv */ -bool daBigelf_c::_execute() { +BOOL daBigelf_c::_execute() { /* Nonmatching */ } /* 00002F5C-00002FAC .text _delete__10daBigelf_cFv */ -bool daBigelf_c::_delete() { +BOOL daBigelf_c::_delete() { /* Nonmatching */ } @@ -333,28 +333,28 @@ void daBigelf_c::CreateHeap() { } /* 00003808-00003828 .text daBigelf_Create__FP10fopAc_ac_c */ -static cPhs_State daBigelf_Create(fopAc_ac_c*) { - /* Nonmatching */ +static cPhs_State daBigelf_Create(fopAc_ac_c* i_this) { + return ((daBigelf_c*)i_this)->_create(); } /* 00003828-00003848 .text daBigelf_Delete__FP10daBigelf_c */ -static BOOL daBigelf_Delete(daBigelf_c*) { - /* Nonmatching */ +static BOOL daBigelf_Delete(daBigelf_c* i_this) { + return ((daBigelf_c*)i_this)->_delete(); } /* 00003848-00003868 .text daBigelf_Execute__FP10daBigelf_c */ -static BOOL daBigelf_Execute(daBigelf_c*) { - /* Nonmatching */ +static BOOL daBigelf_Execute(daBigelf_c* i_this) { + return ((daBigelf_c*)i_this)->_execute(); } /* 00003868-00003888 .text daBigelf_Draw__FP10daBigelf_c */ -static BOOL daBigelf_Draw(daBigelf_c*) { - /* Nonmatching */ +static BOOL daBigelf_Draw(daBigelf_c* i_this) { + return ((daBigelf_c*)i_this)->_draw(); } /* 00003888-00003890 .text daBigelf_IsDelete__FP10daBigelf_c */ static BOOL daBigelf_IsDelete(daBigelf_c*) { - /* Nonmatching */ + return TRUE; } static actor_method_class l_daBigelf_Method = { |
