mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2025-07-01 23:35:41 +00:00
19 lines
369 B
C++
19 lines
369 B
C++
#pragma once
|
|
|
|
#include <atomic>
|
|
#include <fstream>
|
|
#include "commandline.h"
|
|
|
|
class TConsole {
|
|
public:
|
|
TConsole();
|
|
|
|
void Write(const std::string& str);
|
|
void WriteRaw(const std::string& str);
|
|
// BROKEN void InitializeLuaConsole(TLuaEngine& Engine);
|
|
|
|
private:
|
|
// BROKEN std::unique_ptr<TLuaFile> mLuaConsole { nullptr };
|
|
Commandline mCommandline;
|
|
};
|