using System.Collections.Generic; using UnityEngine; public interface ILevelObject { string Name { get; } Vector3 Position { get; } void LevelUpdate(); void LevelStart(); void LevelDestroy(); bool Equals(ILevelObject other); Dictionary ToDictionary(); }