catCannon/src/Server/Interfaces/IMotorMover.ts

9 lines
194 B
TypeScript

interface IMotorMover {
moveClockwise(): void,
moveCounterClockwise(): void,
stopMovement(): void,
movementState: 'CLOCKWISE' | 'COUNTERCLOCKWISE' | "IDLE"
}
export default IMotorMover