diff options
Diffstat (limited to 'Feature.cpp')
-rw-r--r-- | Feature.cpp | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/Feature.cpp b/Feature.cpp new file mode 100644 index 0000000..853b755 --- /dev/null +++ b/Feature.cpp @@ -0,0 +1,41 @@ +#include "Feature.h" + +void Feature::OnInitialise() +{ + +} + +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) +{ + +}
\ No newline at end of file |