CC_SDK/Test/Test2.cpp
2025-05-26 23:22:50 +08:00

28 lines
413 B
C++

#include "Test2.h"
#include "CCApplication.h"
#include "CCThread.h"
#include "CCUnzip.h"
Test2::Test2() {
}
Test2::~Test2() {
}
void Test2::test() {
this->Start();
}
void Test2::Run() {
CC::Println("Hello");
CTL::Application::Signal([this]() {
CCVector<CTL::String> str{"ABC","DWADWAd","DWADSDWAD"};
str.add_lock("ABCD");
CC::Println(str);
CC::Exit();
});
}