20 lines
177 B
C++
20 lines
177 B
C++
#include "Test2.h"
|
|
|
|
#include "CCThread.h"
|
|
|
|
Test2::Test2() {
|
|
|
|
}
|
|
|
|
Test2::~Test2() {
|
|
|
|
}
|
|
|
|
void Test2::test() {
|
|
this->Start();
|
|
}
|
|
|
|
void Test2::Run() {
|
|
CC::Println("Hello");
|
|
}
|