mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 11:03:39 +00:00
12 lines
195 B
C++
12 lines
195 B
C++
#pragma once
|
|
#include "ConsoleInputSource.h"
|
|
|
|
|
|
class ConsoleInput
|
|
{
|
|
public:
|
|
std::wstring msg;
|
|
ConsoleInputSource *source;
|
|
|
|
ConsoleInput(const std::wstring& msg, ConsoleInputSource *source);
|
|
}; |