mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2025-07-16 17:23:14 +00:00
18 lines
286 B
C++
18 lines
286 B
C++
#pragma once
|
|
|
|
#include "Common.h"
|
|
#include "IThreaded.h"
|
|
#include "TServer.h"
|
|
|
|
class TPPSMonitor : public IThreaded {
|
|
public:
|
|
TPPSMonitor(TServer& Server);
|
|
|
|
void operator()() override;
|
|
|
|
private:
|
|
|
|
TServer& mServer;
|
|
bool mShutdown { false };
|
|
int mInternalPPS { 0 };
|
|
}; |