diff options
| author | Léo Lam <leo@leolam.fr> | 2020-12-21 21:38:09 +0100 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2020-12-22 01:50:49 +0100 |
| commit | f98d3ee758edfb888aaee926c1148dd6a77a103a (patch) | |
| tree | 53e99908c94749a761340f4851e30052e6b7dd24 /src/Game/AI/Query/queryCompareGameDataInt.h | |
| parent | 60b2362ddcce427bb08a40b10c24d6234d27135d (diff) | |
Generate stubs for queries
Diffstat (limited to 'src/Game/AI/Query/queryCompareGameDataInt.h')
| -rw-r--r-- | src/Game/AI/Query/queryCompareGameDataInt.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/Game/AI/Query/queryCompareGameDataInt.h b/src/Game/AI/Query/queryCompareGameDataInt.h new file mode 100644 index 00000000..b0a70a03 --- /dev/null +++ b/src/Game/AI/Query/queryCompareGameDataInt.h @@ -0,0 +1,23 @@ +#pragma once + +#include "KingSystem/ActorSystem/actAiQuery.h" + +namespace uking::query { + +class CompareGameDataInt : public ksys::act::ai::Query { + SEAD_RTTI_OVERRIDE(CompareGameDataInt, Query) +public: + explicit CompareGameDataInt(const InitArg& arg); + ~CompareGameDataInt() override; + int doQuery() override; + + void loadParams() override; + void loadParams(const evfl::QueryArg& arg) override; + +protected: + sead::SafeString mGameDataIntName_A{}; + sead::SafeString mGameDataIntName_B{}; + sead::SafeString mOperator{}; +}; + +} // namespace uking::query |
