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