Health/Assets/_VoiceAssistant/com.richframe.frame/Runtime/Input/GetInput.cs

19 lines
315 B
C#
Raw Normal View History

2023-11-21 08:57:37 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public static class GetInput
{
public static IInputListener inputListener;
public static bool GetDown()
{
return false;
}
public static Vector2 GetInputAxis()
{
return Vector2.zero;
}
}