aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/ConsoleInput.h
blob: 1206b24ece0c6c3a57ab2cf9e7269baeaff167dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once
#include "ConsoleInputSource.h"
using namespace std;

class ConsoleInput
{
public:
	wstring msg;
	ConsoleInputSource *source;

	ConsoleInput(const wstring& msg, ConsoleInputSource *source);
};