namespace STVrogue.GameLogic { /// /// A parent class representing all game entities in STV Rogue. /// public class GameEntity { /// /// Every entity is identified by a unique ID. /// public string Id { get; } public GameEntity(string uniqueId) { Id = uniqueId; } } }