IInteractionTool.cs 267 B

1234567891011121314
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace KairoEngine.GameTools.InteractionTools
  5. {
  6. public interface IInteractionTool
  7. {
  8. void EnableTool();
  9. void DisableTool();
  10. Sprite GetIcon();
  11. }
  12. }