CC_SDK/Test/Test2.h

17 lines
191 B
C
Raw Permalink Normal View History

2025-05-03 00:02:51 +08:00
#ifndef TEST2_H
#define TEST2_H
2025-05-18 13:45:56 +08:00
#include "CCThread.h"
2025-05-03 00:02:51 +08:00
2025-05-18 13:45:56 +08:00
class Test2 :public CTL::Thread_V{
2025-05-03 00:02:51 +08:00
public:
Test2();
~Test2();
void test();
2025-05-18 13:45:56 +08:00
void Run() override;
2025-05-03 00:02:51 +08:00
};
#endif //TEST2_H