using UnityEngine; namespace Game { public class PlayerManager : MonoBehaviour { public int Id { get; set; } public string Name { get; set; } public Color Color { get; set; } } }