mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2025-07-01 23:35:41 +00:00
13 lines
154 B
C++
13 lines
154 B
C++
#pragma once
|
|
|
|
#include <atomic>
|
|
#include <commandline/commandline.h>
|
|
|
|
class TConsole {
|
|
public:
|
|
TConsole();
|
|
|
|
private:
|
|
Commandline _Commandline;
|
|
};
|