mirror of
https://github.com/SantaSpeen/BeamMP-Server.git
synced 2026-04-08 21:36:01 +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;
|
|
};
|