mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 10:13:36 +00:00
12 lines
265 B
C++
12 lines
265 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class ConsoleInputSource {
|
|
public:
|
|
virtual ~ConsoleInputSource() {}
|
|
virtual void info(const std::wstring& string) = 0;
|
|
virtual void warn(const std::wstring& string) = 0;
|
|
virtual std::wstring getConsoleName() = 0;
|
|
};
|