mirror of
https://github.com/Patoke/LCERenewed.git
synced 2026-07-09 08:07:04 +00:00
12 lines
216 B
C++
12 lines
216 B
C++
#pragma once
|
|
#include "ConsoleInputSource.h"
|
|
using namespace std;
|
|
|
|
class ConsoleInput
|
|
{
|
|
public:
|
|
wstring msg;
|
|
ConsoleInputSource *source;
|
|
|
|
ConsoleInput(const wstring& msg, ConsoleInputSource *source);
|
|
}; |