MakeUpdateCreatePlayer

This commit is contained in:
rawer470 2024-08-20 17:38:04 +03:00
parent cfe4daa49f
commit 784ae57519
2 changed files with 20 additions and 5 deletions

View file

@ -80,11 +80,7 @@ public class SelectingServerGUI : AbstractGUI
AppManager.Instance.SetGUI(new WaitingForPlayersGUI(false)); AppManager.Instance.SetGUI(new WaitingForPlayersGUI(false));
} }
} }
catch (Exception) catch (Exception) { }
{
// throw;
}
// ваш код здесь // ваш код здесь
}; };

View file

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZoFo.GameCore.GameManagers.NetworkManager.Updates.ServerToClient
{
public class UpdateCreatePlayer : UpdateData
{
public int PlayerId { get; set; }
public UpdateCreatePlayer()
{
isImportant = true;
UpdateType = "UpdateCreatePlayer";
}
}
}