forked from Shardstone/trail-into-darkness
9 lines
199 B
C#
9 lines
199 B
C#
using UnityEngine;
|
|
|
|
namespace Nox.Input {
|
|
public abstract class InputSettings : ScriptableObject {
|
|
public InputMode inputMode;
|
|
public InputSystem_Actions inputActions;
|
|
}
|
|
}
|