10 lines
238 B
C#
10 lines
238 B
C#
using UnityEngine;
|
|
using UnityEngine.InputSystem.LowLevel;
|
|
|
|
public class PlayerAbility : Ability
|
|
{
|
|
[Header("Input")]
|
|
public KeyCode inputKey; //change to better input system later
|
|
|
|
public MouseButton mouseButton; //alternative input
|
|
}
|