diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-12-29 10:41:23 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-12-29 10:41:23 -0700 |
commit | 79dce6268850fb1b0d76c15d5399d66bcd286e5f (patch) | |
tree | 1ab0e20ce928b93262da820c2aa8a91e86a801f9 /src/gamestate.cpp | |
parent | bae6192c54533e8da95d8ae1ed4d4eccee28c39a (diff) | |
download | stage-79dce6268850fb1b0d76c15d5399d66bcd286e5f.tar.gz stage-79dce6268850fb1b0d76c15d5399d66bcd286e5f.tar.bz2 stage-79dce6268850fb1b0d76c15d5399d66bcd286e5f.tar.xz stage-79dce6268850fb1b0d76c15d5399d66bcd286e5f.zip |
About to add the processing core.
Diffstat (limited to 'src/gamestate.cpp')
-rw-r--r-- | src/gamestate.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/gamestate.cpp b/src/gamestate.cpp new file mode 100644 index 0000000..fcd3433 --- /dev/null +++ b/src/gamestate.cpp | |||
@@ -0,0 +1,11 @@ | |||
1 | #include "gamestate.h" | ||
2 | |||
3 | GameState::GameState( Game *pGame ) : | ||
4 | pGame( pGame ) | ||
5 | { | ||
6 | } | ||
7 | |||
8 | GameState::~GameState() | ||
9 | { | ||
10 | } | ||
11 | |||