mirror of https://github.com/zeldaret/botw.git
20 lines
395 B
C++
20 lines
395 B
C++
#include "Game/AI/Query/queryHasItemDye.h"
|
|
#include <evfl/query.h>
|
|
|
|
namespace uking::query {
|
|
|
|
HasItemDye::HasItemDye(const InitArg& arg) : ksys::act::ai::Query(arg) {}
|
|
|
|
HasItemDye::~HasItemDye() = default;
|
|
|
|
// FIXME: implement
|
|
int HasItemDye::doQuery() {
|
|
return -1;
|
|
}
|
|
|
|
void HasItemDye::loadParams(const evfl::QueryArg& arg) {}
|
|
|
|
void HasItemDye::loadParams() {}
|
|
|
|
} // namespace uking::query
|