blob: 0ce68b6e43ee1252b59c05da241df54e9815f5ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef __ASURA_RUNNER_MAIN_H__
#define __ASURA_RUNNER_MAIN_H__
#include "runner.h"
using namespace AsuraRunner;
/// SDL
int main(int args, char* argv[])
{
return 0;
}
#endif
|