Redline/source/main.cpp

12 lines
124 B
C++
Raw Permalink Normal View History

//main.cpp
#include "initexit.h"
#include "interface.h"
int main()
{
Init();
InterfaceMainLoop();
Exit();
return 0;
}