mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-26 12:44:36 +00:00
* Remove stdafx.h and some <unordered_set> includes * Update Minecraft Server Defines and remove more unused folders/files * Unbloat stdafx.h from Minecraft.World
38 lines
416 B
C++
38 lines
416 B
C++
#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;
|
|
} |