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

#include "commonheaders.h"

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


bool EvilCore::OnInit()
{
    void load_modules();
    load_modules();
    return 0;
}
IMPLEMENT_APP(EvilCore)