2025-04-25 19:37:53 +08:00
|
|
|
#include "CCApplication.h"
|
|
|
|
|
#include "Test/Test.h"
|
2025-05-03 00:02:51 +08:00
|
|
|
#include "Test/Test2.h"
|
2025-04-25 19:37:53 +08:00
|
|
|
#include "UI/MainWindow.h"
|
|
|
|
|
|
|
|
|
|
int main(const int argc, char** argv){
|
|
|
|
|
CTL::Application app(argc, argv);
|
2025-05-03 00:02:51 +08:00
|
|
|
Test2 test;
|
|
|
|
|
test.test();
|
|
|
|
|
// MainWindow win;
|
|
|
|
|
// win.Show(&app);
|
2025-04-25 19:37:53 +08:00
|
|
|
return app.Running();
|
|
|
|
|
}
|