mirror of
https://git.neolegacy.dev/pieeebot/cafeberry.git
synced 2026-09-23 12:23:07 +00:00
10 lines
201 B
C++
10 lines
201 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;
|
|
};
|