mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-27 17:03:43 +00:00
39 lines
451 B
C++
39 lines
451 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;
|
|
} |