mirror of https://github.com/zeldaret/botw.git
ksys/act: Fix Query's second loadParams overload
This commit is contained in:
parent
b1470e45fa
commit
f376435211
|
@ -40508,7 +40508,7 @@
|
||||||
0x000000710068410c,AI_QueryBase::dtor,20,_ZN4ksys3act2ai5QueryD2Ev
|
0x000000710068410c,AI_QueryBase::dtor,20,_ZN4ksys3act2ai5QueryD2Ev
|
||||||
0x0000007100684120,AI_QueryBase::dtorDelete,52,_ZN4ksys3act2ai5QueryD0Ev
|
0x0000007100684120,AI_QueryBase::dtorDelete,52,_ZN4ksys3act2ai5QueryD0Ev
|
||||||
0x0000007100684154,AI_QueryBase::doQuery,8,_ZN4ksys3act2ai5Query7doQueryEv
|
0x0000007100684154,AI_QueryBase::doQuery,8,_ZN4ksys3act2ai5Query7doQueryEv
|
||||||
0x000000710068415c,AI_QueryBase::m10n,4,_ZN4ksys3act2ai5Query3m10Ev
|
0x000000710068415c,AI_QueryBase::m10n,4,_ZN4ksys3act2ai5Query10loadParamsERKN4evfl8QueryArgE
|
||||||
0x0000007100684160,sub_7100684160,140,_ZNK4sead15RuntimeTypeInfo6DeriveIN4ksys3act2ai5QueryEE9isDerivedEPKNS0_9InterfaceE
|
0x0000007100684160,sub_7100684160,140,_ZNK4sead15RuntimeTypeInfo6DeriveIN4ksys3act2ai5QueryEE9isDerivedEPKNS0_9InterfaceE
|
||||||
0x00000071006841ec,AI_Query_BranchByGameOver::ctor,48,
|
0x00000071006841ec,AI_Query_BranchByGameOver::ctor,48,
|
||||||
0x000000710068421c,AI_Query_BranchByGameOver::dtor,20,
|
0x000000710068421c,AI_Query_BranchByGameOver::dtor,20,
|
||||||
|
|
Can't render this file because it is too large.
|
|
@ -8,7 +8,8 @@
|
||||||
|
|
||||||
namespace evfl {
|
namespace evfl {
|
||||||
class ParamAccessor;
|
class ParamAccessor;
|
||||||
}
|
class QueryArg;
|
||||||
|
} // namespace evfl
|
||||||
|
|
||||||
namespace ksys::act {
|
namespace ksys::act {
|
||||||
class Actor;
|
class Actor;
|
||||||
|
@ -57,7 +58,7 @@ public:
|
||||||
virtual bool init_(sead::Heap* heap) { return true; }
|
virtual bool init_(sead::Heap* heap) { return true; }
|
||||||
virtual void loadParams() {}
|
virtual void loadParams() {}
|
||||||
virtual int doQuery() { return 0; }
|
virtual int doQuery() { return 0; }
|
||||||
virtual void m10() {}
|
virtual void loadParams(const evfl::QueryArg& arg) {}
|
||||||
virtual bool updateForPreDelete() { return true; }
|
virtual bool updateForPreDelete() { return true; }
|
||||||
virtual void onPreDelete() {}
|
virtual void onPreDelete() {}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue