mirror of
https://github.com/MartinKral/Slash-The-Hordes
synced 2025-11-07 14:55:58 +00:00
6 lines
81 B
TypeScript
6 lines
81 B
TypeScript
|
|
import { Vec2 } from "cc";
|
||
|
|
|
||
|
|
export interface IInput {
|
||
|
|
getAxis: () => Vec2;
|
||
|
|
}
|