Update BaseInputModule.cs
documentation
This commit is contained in:
parent
b4554b2faf
commit
4e9acd013a
1 changed files with 25 additions and 1 deletions
|
@ -1,13 +1,37 @@
|
||||||
using System;
|
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace Goldenwere.GWSU.CTRL.CHAR.Core
|
namespace Goldenwere.GWSU.CTRL.CHAR.Core
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Controller module that performs the bridging between a module with actions and a lower-level input system.
|
||||||
|
/// An Input Module should determine how and when to invoke module actions based on the specified action types.
|
||||||
|
/// </summary>
|
||||||
public abstract class BaseInputModule : MonoBehaviour
|
public abstract class BaseInputModule : MonoBehaviour
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Registers a module's action with the input module and the input system it implements.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="_action">The action to register</param>
|
||||||
public abstract void RegisterModuleAction(BaseModuleAction _action);
|
public abstract void RegisterModuleAction(BaseModuleAction _action);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Registers a module's action with the input module and the input system it implements.
|
||||||
|
/// </summary>
|
||||||
|
/// <typeparam name="T">The value-type associated with the action</typeparam>
|
||||||
|
/// <param name="_action">The action to register</param>
|
||||||
public abstract void RegisterModuleAction<T>(BaseModuleAction<T> _action) where T : struct;
|
public abstract void RegisterModuleAction<T>(BaseModuleAction<T> _action) where T : struct;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Unregisters a module's action from the input module and the input system it implements.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="_action">The action to register</param>
|
||||||
public abstract void UnregisterModuleAction(BaseModuleAction _action);
|
public abstract void UnregisterModuleAction(BaseModuleAction _action);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Unregisters a module's action from the input module and the input system it implements.
|
||||||
|
/// </summary>
|
||||||
|
/// <typeparam name="T">The value-type associated with the action</typeparam>
|
||||||
|
/// <param name="_action">The action to register</param>
|
||||||
public abstract void UnregisterModuleAction<T>(BaseModuleAction<T> _action) where T : struct;
|
public abstract void UnregisterModuleAction<T>(BaseModuleAction<T> _action) where T : struct;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue