mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 14:03:37 +00:00
10 lines
207 B
C++
10 lines
207 B
C++
#pragma once
|
|
|
|
class ConsoleInputSource
|
|
{
|
|
public:
|
|
virtual void info(const std::wstring& string) = 0;
|
|
virtual void warn(const std::wstring& string) = 0;
|
|
virtual std::wstring getConsoleName() = 0;
|
|
};
|