Added Minecraft Client GUI v1.0 to the repository

+ Some BasicIO fixes to Minecraft Console Client
This commit is contained in:
ORelio 2013-08-21 14:31:57 +02:00
parent 84b8b9da2a
commit f26ff323fd
18 changed files with 7413 additions and 9 deletions

View file

@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace MinecraftClientGUI
{
static class Program
{
/// <summary>
/// Minecraft Console Client GUI by ORelio (c) 2013.
/// Allows to use Minecraft Console Client in a more user friendly interface
/// This source code is released under the CDDL 1.0 License.
/// </summary>
[STAThread]
static void Main(string[] args)
{
if (!System.IO.File.Exists(MinecraftClient.ExePath))
{
MessageBox.Show("File not found: " + MinecraftClient.ExePath, "Minecraft client not found", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1(args));
}
}
}
}