9 lines
242 B
TypeScript
9 lines
242 B
TypeScript
import type { Input, directionString } from '@any-touch/shared';
|
|
export default function (): (input: Input) => {
|
|
velocityX: number;
|
|
velocityY: number;
|
|
speedX: number;
|
|
speedY: number;
|
|
direction: directionString;
|
|
};
|