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