blob: 2420aefac6b4eb61591d74b745baef58443d591a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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;
}
|