mirror of
https://github.com/SantaSpeen/BeamMP-Server.git
synced 2026-04-10 07:46:00 +00:00
10 lines
168 B
C++
10 lines
168 B
C++
#pragma once
|
|
|
|
#include "IThreaded.h"
|
|
#include "Common.h"
|
|
|
|
class THeartbeatThread : public IThreaded {
|
|
public:
|
|
THeartbeatThread();
|
|
void operator()() override;
|
|
}; |