summaryrefslogtreecommitdiff
path: root/src/commandset.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/commandset.h')
-rw-r--r--src/commandset.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/commandset.h b/src/commandset.h
index 579e1d8..aff2e4c 100644
--- a/src/commandset.h
+++ b/src/commandset.h
@@ -14,8 +14,10 @@ public:
14 14
15 bool dispatch( class GameState &gState, const Bu::StringList &lCmd ); 15 bool dispatch( class GameState &gState, const Bu::StringList &lCmd );
16 16
17private:
18 typedef Bu::List<class Command *> CommandList; 17 typedef Bu::List<class Command *> CommandList;
18 const CommandList &getCommandList() const { return lCommand; }
19
20private:
19 CommandList lCommand; 21 CommandList lCommand;
20}; 22};
21 23