diff options
author | Fbenas <philbeansburton@gmail.com> | 2017-03-12 04:02:03 +0000 |
---|---|---|
committer | Fbenas <philbeansburton@gmail.com> | 2017-03-12 04:02:03 +0000 |
commit | 755248886ad294bade86cb8a5ce36465b5193f36 (patch) | |
tree | d7a55ad3b1913b2a71e3616a3b14693268b10b22 /src/Core/Main.php | |
parent | 1eeeb808275e6e0bcff6ed0c2e7b109d81da67e7 (diff) |
Inital commit, created message handler
Diffstat (limited to 'src/Core/Main.php')
-rw-r--r-- | src/Core/Main.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/Core/Main.php b/src/Core/Main.php new file mode 100644 index 0000000..594b15c --- /dev/null +++ b/src/Core/Main.php @@ -0,0 +1,29 @@ +<?php + +namespace App\Core; + +use App\Game; + +/** +* Core Main class, deals with all set-up +*/ +class Main +{ + + public function __construct() + { + $this->init(); + + $this->run(); + } + + protected function init() + { + return true; + } + + protected function run() + { + $game = new Game(); + } +}
\ No newline at end of file |