mirror of
https://github.com/zeldaret/botw
synced 2026-06-25 09:22:29 -04:00
14 lines
274 B
C++
14 lines
274 B
C++
#include "KingSystem/ActorSystem/queryDummyQuery.h"
|
|
|
|
namespace ksys::act::ai {
|
|
|
|
DummyQuery::DummyQuery(const Query::InitArg& arg) : Query(arg) {}
|
|
|
|
bool DummyQuery::init_(sead::Heap* heap) {
|
|
return true;
|
|
}
|
|
|
|
void DummyQuery::loadParams() {}
|
|
|
|
} // namespace ksys::act::ai
|