CC_SDK/Test/Test2.cpp

20 lines
177 B
C++
Raw Normal View History

2025-05-03 00:02:51 +08:00
#include "Test2.h"
#include "CCThread.h"
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-03 00:02:51 +08:00
}