summaryrefslogtreecommitdiff
path: root/core/main.cpp
blob: 20b85019447ddbb6f5a67678227e3ef7de6b16bc (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

#include "commonheaders.h"


PLUGINLINK pluglink;

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

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