Slash-The-Hordes/assets/Scripts/Game/Input/IInput.ts

6 lines
81 B
TypeScript
Raw Permalink Normal View History

2022-11-14 15:35:47 +00:00
import { Vec2 } from "cc";
export interface IInput {
getAxis: () => Vec2;
}