namespace Model { public static class PlayerFactory { public static Player Create(long id) { Player player = EntityFactory.CreateWithId(id); PlayerComponent playerComponent = Game.Scene.GetComponent(); playerComponent.Add(player); return player; } } }