15 lines
185 B
C++
15 lines
185 B
C++
#pragma once
|
|
|
|
namespace Components
|
|
{
|
|
class Threading : public Component
|
|
{
|
|
public:
|
|
Threading();
|
|
|
|
private:
|
|
static void FrameEpilogueStub();
|
|
static void PacketEventStub();
|
|
};
|
|
}
|