mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 16:18:24 -05:00
d3da0409e9
11 lines
360 B
C#
11 lines
360 B
C#
using UnityAtoms.BaseAtoms;
|
|||
using UnityEngine;
|
|||
|
|||
namespace UnityAtoms.InputSystem
|
|||
{
|
|||
[CreateAssetMenu(menuName = "Unity Atoms/Input System/Interpreters/Int")]
|
|||
public sealed class IntCallbackContextInterpreter : CallbackContextInterpreter<int, IntPair, IntConstant, IntVariable, IntEvent, IntPairEvent, IntIntFunction, IntVariableInstancer>
|
|||
{
|
|||
}
|
|||
}
|