CC_SDK/Test/Test2.cpp

28 lines
413 B
C++
Raw Normal View History

2025-05-03 00:02:51 +08:00
#include "Test2.h"
2025-05-26 23:22:50 +08:00
#include "CCApplication.h"
2025-05-03 00:02:51 +08:00
#include "CCThread.h"
2025-05-22 20:03:09 +08:00
#include "CCUnzip.h"
2025-05-03 00:02:51 +08:00
Test2::Test2() {
}
Test2::~Test2() {
}
void Test2::test() {
2025-05-18 13:45:56 +08:00
this->Start();
}
void Test2::Run() {
CC::Println("Hello");
2025-05-26 23:22:50 +08:00
CTL::Application::Signal([this]() {
CCVector<CTL::String> str{"ABC","DWADWAd","DWADSDWAD"};
str.add_lock("ABCD");
CC::Println(str);
CC::Exit();
});
2025-05-03 00:02:51 +08:00
}