12 lines
124 B
C++
12 lines
124 B
C++
|
//main.cpp
|
||
|
|
||
|
#include "initexit.h"
|
||
|
#include "interface.h"
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
Init();
|
||
|
InterfaceMainLoop();
|
||
|
Exit();
|
||
|
return 0;
|
||
|
}
|