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.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/client/console.h b/src/client/console.h
index 5bdbde6..533a8be 100644
--- a/src/client/console.h
+++ b/src/client/console.h
@@ -20,11 +20,8 @@ public:
Console();
virtual ~Console();
- virtual void flush();
-
- void draw_console();
-
- void draw_notify();
+ /// add notification
+ void notify(std::string const &message);
/// clear notifications
void clear_notify();
@@ -56,6 +53,11 @@ public:
/// shutdown the client console
static void shutdown();
+protected:
+ void draw_console();
+
+ void draw_notify();
+
private:
// notifications
size_t notify_pos;