Files
botw/src/Game/AI/Query/queryRandomChoice8.cpp
T
2020-12-22 01:50:49 +01:00

20 lines
419 B
C++

#include "Game/AI/Query/queryRandomChoice8.h"
#include <evfl/query.h>
namespace uking::query {
RandomChoice8::RandomChoice8(const InitArg& arg) : ksys::act::ai::Query(arg) {}
RandomChoice8::~RandomChoice8() = default;
// FIXME: implement
int RandomChoice8::doQuery() {
return -1;
}
void RandomChoice8::loadParams(const evfl::QueryArg& arg) {}
void RandomChoice8::loadParams() {}
} // namespace uking::query