summaryrefslogtreecommitdiff
path: root/src/Core/Main.php
blob: 594b15c6ae0c438d4551581035426f899c0733d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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();        
    }
}