mirror of
https://github.com/portable-lce/portable-lce.git
synced 2026-07-18 17:38:13 +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;
|
|
};
|