mirror of
https://github.com/SantaSpeen/BeamMP-Server.git
synced 2025-08-18 09:55:36 +00:00
15 lines
207 B
C++
15 lines
207 B
C++
#ifndef SENTRY_H
|
|
#define SENTRY_H
|
|
|
|
#include <string>
|
|
|
|
// singleton, dont make this twice
|
|
class Sentry final {
|
|
public:
|
|
Sentry(const std::string& SentryUrl);
|
|
~Sentry();
|
|
private:
|
|
};
|
|
|
|
#endif // SENTRY_H
|