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/main.cc')
-rw-r--r--src/client/main.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/client/main.cc b/src/client/main.cc
index 7c5f7b7..6955042 100644
--- a/src/client/main.cc
+++ b/src/client/main.cc
@@ -7,9 +7,8 @@
int main( int argc, char *argv[] )
{
- client::init();
-
- client::run();
-
- client::shutdown();
+ client::application.init();
+ client::application.run();
+ client::application.shutdown();
}
+