aboutsummaryrefslogtreecommitdiff
path: root/Source/Main.cpp
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2021-06-17 14:20:54 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2021-06-17 14:22:53 +0700
commit602a0c5951050e7cce645534cb4f136cf9f4fee4 (patch)
treee70e63b0b0058830e58c244ad917bc892c10418f /Source/Main.cpp
parent094e12df1ebb81d304803be4b274546384ec117c (diff)
downloadblackshades-602a0c5951050e7cce645534cb4f136cf9f4fee4.tar.gz
Rename source and build directory1.1.1
Diffstat (limited to 'Source/Main.cpp')
-rw-r--r--Source/Main.cpp64
1 files changed, 0 insertions, 64 deletions
diff --git a/Source/Main.cpp b/Source/Main.cpp
deleted file mode 100644
index 2c8f381..0000000
--- a/Source/Main.cpp
+++ /dev/null
@@ -1,64 +0,0 @@
-/********************> Headers <*****/
-
-#include "Game.h"
-
-
-
-/********************> Globals <*****/
-
-
-
-Game game;
-
-
-
-/********************> main() <*****/
-
-int main( int argc, char *argv[] )
-
- {
-
-
-#ifdef OS9
- ToolboxInit();
-
-
-
- if ( HasAppearance() )
-
- RegisterAppearanceClient();
-#endif
-
-
-
-
- game.InitGL();
-
-
-
- game.InitGame();
-
-
-
- game.EventLoop();
-
-
-
- game.Dispose();
-
-
-#ifdef OS9
- if ( HasAppearance() )
-
- UnregisterAppearanceClient();
-
-
-
- FlushEvents( everyEvent, 0 );
-
- ExitToShell();
-#endif
-
-
-}
-