mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2026-04-03 06:16:04 +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;
|
|
}; |