using System.Collections; using System.Collections.Generic; using UnityEngine; namespace KairoEngine.GameTools.InteractionTools { public interface IInteractionTool { void EnableTool(); void DisableTool(); } }