using System; namespace WingsEmu.Game._ECS; public interface IMapSystem { string Name { get; } /// /// /// /// void ProcessTick(DateTime date, bool isTickRefresh = false); void PutIdleState(); void Clear(); }