the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#include "stdafx.h"
2#include "Goal.h"
3
4Goal::Goal()
5{
6 _requiredControlFlags = 0;
7}
8
9bool Goal::canContinueToUse()
10{
11 return canUse();
12}
13
14bool Goal::canInterrupt()
15{
16 return true;
17}
18
19void Goal::start()
20{
21}
22
23void Goal::stop()
24{
25}
26
27void Goal::tick()
28{
29}
30
31void Goal::setRequiredControlFlags(int requiredControlFlags)
32{
33 _requiredControlFlags = requiredControlFlags;
34}
35
36int Goal::getRequiredControlFlags()
37{
38 return _requiredControlFlags;
39}