using UnityEngine; public interface ILevelObject { Vector3 Position { get; } void LevelUpdate(); void LevelStart(); void LevelDestroy(); bool Equals(ILevelObject other); }