This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
LaiNES/src/main.cpp

11 lines
106 B
C++
Raw Normal View History

2014-05-26 11:32:13 +00:00
#include "gui.hpp"
2013-12-03 09:27:43 +00:00
2014-01-25 11:26:01 +00:00
2013-12-03 09:27:43 +00:00
int main(int argc, char *argv[])
{
2014-05-26 11:32:13 +00:00
GUI::init();
2014-05-26 14:23:34 +00:00
GUI::run();
2013-12-03 09:27:43 +00:00
return 0;
}