mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LCE-Revelations.git
synced 2026-05-22 09:36:29 +00:00
10 lines
192 B
C++
10 lines
192 B
C++
#pragma once
|
|
|
|
class ConsoleInputSource
|
|
{
|
|
public:
|
|
virtual void info(const wstring& string) = 0;
|
|
virtual void warn(const wstring& string) = 0;
|
|
virtual wstring getConsoleName() = 0;
|
|
};
|