blob: c404709866aa5448dfef58a3ce674047cca70fe2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include "KingSystem/ActorSystem/actAiQuery.h"
namespace uking::query {
class WhatCurrentItem : public ksys::act::ai::Query {
SEAD_RTTI_OVERRIDE(WhatCurrentItem, Query)
public:
explicit WhatCurrentItem(const InitArg& arg);
~WhatCurrentItem() override;
int doQuery() override;
void loadParams() override;
void loadParams(const evfl::QueryArg& arg) override;
};
} // namespace uking::query
|