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/queryCheckDistanceForWarp.h | |
| parent | 60b2362ddcce427bb08a40b10c24d6234d27135d (diff) | |
Generate stubs for queries
Diffstat (limited to 'src/Game/AI/Query/queryCheckDistanceForWarp.h')
| -rw-r--r-- | src/Game/AI/Query/queryCheckDistanceForWarp.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/Game/AI/Query/queryCheckDistanceForWarp.h b/src/Game/AI/Query/queryCheckDistanceForWarp.h new file mode 100644 index 00000000..11f06709 --- /dev/null +++ b/src/Game/AI/Query/queryCheckDistanceForWarp.h @@ -0,0 +1,22 @@ +#pragma once + +#include "KingSystem/ActorSystem/actAiQuery.h" + +namespace uking::query { + +class CheckDistanceForWarp : public ksys::act::ai::Query { + SEAD_RTTI_OVERRIDE(CheckDistanceForWarp, Query) +public: + explicit CheckDistanceForWarp(const InitArg& arg); + ~CheckDistanceForWarp() override; + int doQuery() override; + + void loadParams() override; + void loadParams(const evfl::QueryArg& arg) override; + +protected: + sead::SafeString mWarpDestMapName{}; + sead::SafeString mWarpDestPosName{}; +}; + +} // namespace uking::query |
