mirror of
https://github.com/zetaPRIME/libstarlight.git
synced 2025-06-26 05:32:46 +00:00
8 lines
134 B
C
8 lines
134 B
C
|
#pragma once
|
||
|
|
||
|
#include "starlight/threading/Thread.h"
|
||
|
|
||
|
class ThreadTest : public sl::threading::Thread {
|
||
|
void Body() override;
|
||
|
};
|