summaryrefslogtreecommitdiff
path: root/src/common.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.hpp')
-rw-r--r--src/common.hpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/src/common.hpp b/src/common.hpp
index fd7327d..872a40d 100644
--- a/src/common.hpp
+++ b/src/common.hpp
@@ -345,32 +345,6 @@ namespace render {
extern render::state_t *debug_render;
-namespace text {
- typedef enum {
- LANG_ENGLISH,
- LANG_POLISH
- } language_t;
-
- extern language_t language;
-
- typedef enum {
- SAY_NO_PATH,
- SAY_BLOCKED,
- SAY_READY,
- SAY_MOVING,
- UNIT_NAME_SPIDER,
- UNIT_NAME_SOLDIER,
- UNIT_DEATH,
- UNIT_ATTACK,
- UNIT_MISS,
- UNIT_CRITICAL_MISS,
- UNIT_CRITICAL_HIT,
- UNIT_DAMAGE
- } index_t;
-
- std::string get(index_t index);
-}
-
// Divide and round to minus infinity.
template <typename T>
T divide_rmi(T x, T y, T *rem)