about summary refs log tree commit diff
path: root/src/game/client/lineinput.hpp
diff options
context:
space:
mode:
authorMagnus Auvinen <magnus.auvinen@gmail.com>2008-08-30 08:01:29 +0000
committerMagnus Auvinen <magnus.auvinen@gmail.com>2008-08-30 08:01:29 +0000
commitb4cef60d62e24d3c0c0451e94adf99254a259a3d (patch)
tree315d821277f7ea85d3f30d87818005aa77c67438 /src/game/client/lineinput.hpp
parent0511e1152a13ad99b51a819a75ef457404e86d4c (diff)
downloadzcatch-b4cef60d62e24d3c0c0451e94adf99254a259a3d.tar.gz
zcatch-b4cef60d62e24d3c0c0451e94adf99254a259a3d.zip
fixed the remote console
Diffstat (limited to 'src/game/client/lineinput.hpp')
-rw-r--r--src/game/client/lineinput.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/client/lineinput.hpp b/src/game/client/lineinput.hpp
index cf42a7a5..80ef3c52 100644
--- a/src/game/client/lineinput.hpp
+++ b/src/game/client/lineinput.hpp
@@ -1,3 +1,5 @@
+#ifndef GAME_CLIENT_LINEINPUT_H
+#define GAME_CLIENT_LINEINPUT_H
 
 // line input helter
 class LINEINPUT
@@ -21,3 +23,5 @@ public:
 	int get_length() const { return len; }
 	unsigned cursor_offset() const { return cursor_pos; }
 };
+
+#endif