mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-18 21:18:23 -04:00
Auto-generate trivial process_method_funcs
This commit is contained in:
@@ -230,28 +230,28 @@ void daNpcSv_c::isTalkOK() {
|
||||
}
|
||||
|
||||
/* 00002958-00002978 .text daNpc_PeopleCreate__FPv */
|
||||
static s32 daNpc_PeopleCreate(void*) {
|
||||
/* Nonmatching */
|
||||
static s32 daNpc_PeopleCreate(void* i_this) {
|
||||
return ((daNpcSv_c*)i_this)->_create();
|
||||
}
|
||||
|
||||
/* 00002978-0000299C .text daNpc_PeopleDelete__FPv */
|
||||
static BOOL daNpc_PeopleDelete(void*) {
|
||||
/* Nonmatching */
|
||||
static BOOL daNpc_PeopleDelete(void* i_this) {
|
||||
return ((daNpcSv_c*)i_this)->_delete();
|
||||
}
|
||||
|
||||
/* 0000299C-000029C0 .text daNpc_PeopleExecute__FPv */
|
||||
static BOOL daNpc_PeopleExecute(void*) {
|
||||
/* Nonmatching */
|
||||
static BOOL daNpc_PeopleExecute(void* i_this) {
|
||||
return ((daNpcSv_c*)i_this)->_execute();
|
||||
}
|
||||
|
||||
/* 000029C0-000029E4 .text daNpc_PeopleDraw__FPv */
|
||||
static BOOL daNpc_PeopleDraw(void*) {
|
||||
/* Nonmatching */
|
||||
static BOOL daNpc_PeopleDraw(void* i_this) {
|
||||
return ((daNpcSv_c*)i_this)->_draw();
|
||||
}
|
||||
|
||||
/* 000029E4-000029EC .text daNpc_PeopleIsDelete__FPv */
|
||||
static BOOL daNpc_PeopleIsDelete(void*) {
|
||||
/* Nonmatching */
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static actor_method_class daNpc_PeopleMethodTable = {
|
||||
|
||||
Reference in New Issue
Block a user