mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-01-22 17:12:25 -05:00
25 lines
No EOL
366 B
C#
25 lines
No EOL
366 B
C#
using System;
|
|
|
|
namespace Launcher {
|
|
|
|
public class GameStartData {
|
|
|
|
public string Username;
|
|
|
|
public string Mppass;
|
|
|
|
public string Ip;
|
|
|
|
public string Port;
|
|
|
|
public GameStartData() {
|
|
}
|
|
|
|
public GameStartData( string user, string mppass, string ip, string port ) {
|
|
Username = user;
|
|
Mppass = mppass;
|
|
Ip = ip;
|
|
Port = port;
|
|
}
|
|
}
|
|
} |