mirror of
https://github.com/zeldaret/botw
synced 2026-05-31 09:21:36 -04:00
17 lines
328 B
C++
17 lines
328 B
C++
#pragma once
|
|
|
|
#include "KingSystem/ActorSystem/actAiQuery.h"
|
|
|
|
namespace ksys::act::ai {
|
|
|
|
class DummyQuery : public Query {
|
|
SEAD_RTTI_OVERRIDE(DummyQuery, Query)
|
|
public:
|
|
explicit DummyQuery(const InitArg& arg);
|
|
|
|
bool init_(sead::Heap* heap) override;
|
|
void loadParams() override;
|
|
};
|
|
|
|
} // namespace ksys::act::ai
|