Show username in title

Shows the username in console title to make identification easier when
multiple instances of the client are running
This commit is contained in:
v1RuX 2014-01-16 16:21:15 +01:00
parent 1284017245
commit bf87374b48

View file

@ -167,6 +167,9 @@ namespace MinecraftClient
} }
} }
//Set login as console title to identify it easier when multiple instances are running
Console.Title = "Console Client for MC - " + Settings.Login;
startupargs = args; startupargs = args;
InitializeClient(); InitializeClient();
} }