Beispiel #1
0
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            ChatWindow    chatWindow = new ChatWindow();
            Client_Client client     = new Client_Client(chatWindow);

            Application.Run(chatWindow);
            client.Dispose();
        }
Beispiel #2
0
 public MonoGameWindow(InitGamePacket packet, Client_Client client)
 {
     game        = new Client_Game(packet);
     this.client = client;
 }
Beispiel #3
0
 public GameWindow(InitGamePacket packet, Client_Client client)
 {
     this.client = client;
     InitializeComponent(packet);
 }
Beispiel #4
0
 public void InitializeClient(Client_Client client)
 {
     this.client = client;
     UpdateServerLog("Chat Window - V0.2.2", Color.DarkGreen);
 }