summaryrefslogtreecommitdiff
path: root/src/game/game.hpp
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2018-04-21 18:59:42 +0200
committerPaweł Redman <pawel.redman@gmail.com>2018-04-21 18:59:42 +0200
commitc3a8bc36ce75984bdb5a54fbae4f77d84e4efbcc (patch)
tree1d334838c8f98e05b0c0c77a5f56ca65412a3585 /src/game/game.hpp
parent4cfe1361fff6223d11a25cefd74af7a51b7d57bd (diff)
Get rid of src/game/text.cpp.
Diffstat (limited to 'src/game/game.hpp')
-rw-r--r--src/game/game.hpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/game/game.hpp b/src/game/game.hpp
index e4fdba2..2a472b7 100644
--- a/src/game/game.hpp
+++ b/src/game/game.hpp
@@ -253,34 +253,6 @@ namespace game {
void load(void);
}
- namespace text {
- typedef enum {
- LANG_ENGLISH
- } language_t;
-
- extern language_t language;
-
- typedef enum {
- PAUSED,
- UNPAUSED,
- FOLLOWING_ON,
- FOLLOWING_OFF,
- SAY_NO_PATH,
- SAY_READY,
- SAY_MOVING,
- SAY_STOPPING,
- SAY_FIRING,
- SAY_NO_ROCKETS,
- UNIT_NAME_SPIDER,
- UNIT_NAME_NEST,
- UNIT_NAME_REPL,
- UNIT_DEATH,
- UNIT_DESTRUCTION
- } index_t;
-
- std::string get(index_t index);
- }
-
class entity_t : public world::entity_t {
public:
game::state_t *game = 0;