IInputEventHandler.cs 138 B

123456789
  1. using System;
  2. using UnityEngine;
  3. public interface IInputEventHandler
  4. {
  5. void KeyDown(KeyCode key);
  6. void KeyUp(KeyCode key);
  7. }