diff options
Diffstat (limited to 'Minecraft.World/Goal.cpp')
| -rw-r--r-- | Minecraft.World/Goal.cpp | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/Minecraft.World/Goal.cpp b/Minecraft.World/Goal.cpp new file mode 100644 index 00000000..2420aefa --- /dev/null +++ b/Minecraft.World/Goal.cpp @@ -0,0 +1,39 @@ +#include "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; +}
\ No newline at end of file |
