diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-02-06 01:21:36 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-02-06 01:21:36 -0700 |
commit | e10e9ee07c03d7ee5752b8122ecddaef40dfd5d5 (patch) | |
tree | a2a53a4d9ebdbc6e53079c75e294a39e7ae87877 /src/commandset.h | |
parent | e150ee5e1ce33b0a4913d53e5df4658ea508eb6e (diff) | |
download | stage-e10e9ee07c03d7ee5752b8122ecddaef40dfd5d5.tar.gz stage-e10e9ee07c03d7ee5752b8122ecddaef40dfd5d5.tar.bz2 stage-e10e9ee07c03d7ee5752b8122ecddaef40dfd5d5.tar.xz stage-e10e9ee07c03d7ee5752b8122ecddaef40dfd5d5.zip |
Option input type situations almost done.
Interfaces just need some work.
Diffstat (limited to 'src/commandset.h')
-rw-r--r-- | src/commandset.h | 4 |
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 | ||
17 | private: | ||
18 | typedef Bu::List<class Command *> CommandList; | 17 | typedef Bu::List<class Command *> CommandList; |
18 | const CommandList &getCommandList() const { return lCommand; } | ||
19 | |||
20 | private: | ||
19 | CommandList lCommand; | 21 | CommandList lCommand; |
20 | }; | 22 | }; |
21 | 23 | ||