blob: 08e8c5757d1677814fb6cb2e090349e5a246fe9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "Game/AI/Query/queryWhatCurrentItem.h"
#include <evfl/Query.h>
namespace uking::query {
WhatCurrentItem::WhatCurrentItem(const InitArg& arg) : ksys::act::ai::Query(arg) {}
WhatCurrentItem::~WhatCurrentItem() = default;
// FIXME: implement
int WhatCurrentItem::doQuery() {
return -1;
}
void WhatCurrentItem::loadParams(const evfl::QueryArg& arg) {}
void WhatCurrentItem::loadParams() {}
} // namespace uking::query
|