Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/console.h')
-rw-r--r--src/client/console.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/client/console.h b/src/client/console.h
index d9e78a0..dc831b7 100644
--- a/src/client/console.h
+++ b/src/client/console.h
@@ -12,8 +12,9 @@
#include <sstream>
#include <deque>
-const size_t MAXCONLINES=2048;
-const size_t MAXHISTOLINES=512;
+const size_t MAXCONLINES = 2048;
+const size_t MAXHISTOLINES = 512;
+const size_t MAXNOTIFYLINES = 3;
namespace client {
@@ -51,6 +52,10 @@ void load_history();
/// save input history
void save_history();
+extern size_t notify_pos;
+extern std::string notify_text[MAXNOTIFYLINES];
+extern float notify_time[MAXNOTIFYLINES];
+
}
}