1
0
Fork 0

Update BaseInputModule.cs

documentation
This commit is contained in:
lightling 2022-07-11 20:49:50 -04:00
parent b4554b2faf
commit 4e9acd013a
Signed by: lightling
GPG key ID: 016F11E0AA296B67

View file

@ -1,13 +1,37 @@
using System;
using UnityEngine;
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
{
/// <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);
/// <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;
/// <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);
/// <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;
}
}