blob: 325e8b92fea5ac1aee8799c5abb15849bdd73681 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
#include "Feature.h"
void Feature::LoadConfig()
{
}
void Feature::SaveConfig()
{
}
void Feature::OnInitialise()
{
}
void Feature::OnGameStart()
{
}
void Feature::OnTurn()
{
}
void Feature::OnUnitCreated(Unit* unit)
{
}
void Feature::OnShutdown()
{
}
void Feature::OnDraw()
{
}
void Feature::OnMenuMainWindow()
{
}
void Feature::OnMenuPlayerTreenode(Player* player, int playerIndex)
{
}
void Feature::OnPlayerIteration(Player* player, int playerIndex)
{
}
void Feature::OnUnitIteration(Unit* unit, Player* player, int playerIndex)
{
}
void Feature::OnNeutralUnit(Unit* unit)
{
}
|