summaryrefslogtreecommitdiff
path: root/core/main.cpp
blob: 5d324e02e9ecc3a60b5b6cdfbc4a660d266eb11a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

#include "commonheaders.h"

class EvilCore: public wxApp
{
public:
    virtual bool OnInit();
};

bool EvilCore::OnInit()
{
    void load_modules();
    load_modules();
    while(true)
    sleep(10);
    return 0;
}
IMPLEMENT_APP(EvilCore)