using UnityEngine; public interface IMapObject { void Init(Map map); int id{get;set;} TeamUtil.Team team{get;set;} Vector3 position{get;set;} int col{get;} int row{get;} void Remove(); }