Liberi
An exergame built for kids with CP!
IActionInfoProvider.cs
1 using UnityEngine;
2 
8 public interface IActionInfoProvider
9 {
13  string GetActionCaption (ControlsAction action);
17  bool IsActionEnabled (ControlsAction action);
18 }
string GetActionCaption(ControlsAction action)
Gets the caption to use for the given action.
bool IsActionEnabled(ControlsAction action)
Gets whether or not the given action is enabled.
Interface for classes which provide information for an action.