diff --git a/Entity/System/Room.cs b/Entity/System/Room.cs index 504e60f..194109d 100644 --- a/Entity/System/Room.cs +++ b/Entity/System/Room.cs @@ -42,6 +42,11 @@ namespace Milimoe.FunGame.Core.Entity Statistics = new(this); } + public override string ToString() + { + return $"[ {Roomid} ] {Name}"; + } + public override bool Equals(IBaseEntity? other) { return other is Room r && r.Roomid == Roomid;