mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 09:43:40 +00:00
20 lines
447 B
C++
20 lines
447 B
C++
#include "../../Platform/stdafx.h"
|
|
#include "Goal.h"
|
|
|
|
Goal::Goal() { _requiredControlFlags = 0; }
|
|
|
|
bool Goal::canContinueToUse() { return canUse(); }
|
|
|
|
bool Goal::canInterrupt() { return true; }
|
|
|
|
void Goal::start() {}
|
|
|
|
void Goal::stop() {}
|
|
|
|
void Goal::tick() {}
|
|
|
|
void Goal::setRequiredControlFlags(int requiredControlFlags) {
|
|
_requiredControlFlags = requiredControlFlags;
|
|
}
|
|
|
|
int Goal::getRequiredControlFlags() { return _requiredControlFlags; } |