Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/application.h')
-rw-r--r--src/core/application.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/core/application.h b/src/core/application.h
index f0f03b5..01f34cf 100644
--- a/src/core/application.h
+++ b/src/core/application.h
@@ -47,7 +47,7 @@ public:
/*----- virtual mutators ------------------------------------------ */
/// initialize the application
- virtual void init();
+ virtual void init(int count, char **arguments);
/// shutdown the application
virtual void shutdown();
@@ -70,6 +70,9 @@ protected:
/// save cvar config
void save_config();
+ /// load command line arguments
+ void load_commandline(int count, char **argments);
+
private:
/// time the core has been running
float application_time;