12 lines
260 B
C++
12 lines
260 B
C++
|
|
#include "CCApplication.h"
|
||
|
|
#include "Test/Test.h"
|
||
|
|
#include "UI/MainWindow.h"
|
||
|
|
|
||
|
|
int main(const int argc, char** argv){
|
||
|
|
CTL::Application app(argc, argv);
|
||
|
|
// Test test;
|
||
|
|
// test.test();
|
||
|
|
MainWindow win;
|
||
|
|
win.Show(&app);
|
||
|
|
return app.Running();
|
||
|
|
}
|