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