summaryrefslogtreecommitdiff
path: root/src/Game/AI/Query/queryBranchByGameOver.cpp
blob: 20994930fa486eec20a4a90e3da6219401a3fad5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "Game/AI/Query/queryBranchByGameOver.h"
#include <evfl/Query.h>

namespace uking::query {

BranchByGameOver::BranchByGameOver(const InitArg& arg) : ksys::act::ai::Query(arg) {}

BranchByGameOver::~BranchByGameOver() = default;

// FIXME: implement
int BranchByGameOver::doQuery() {
    return -1;
}

void BranchByGameOver::loadParams(const evfl::QueryArg& arg) {}

void BranchByGameOver::loadParams() {}

}  // namespace uking::query