easyrlbot
Version:
A RLBot implementation in javascript with Sockets.
20 lines (19 loc) • 451 B
TypeScript
import { BotClient } from "./BotClient";
declare class Controller {
throttle: number;
steer: number;
pitch: number;
roll: number;
yaw: number;
boost: boolean;
jump: boolean;
handbrake: boolean;
useItem: boolean;
constructor();
}
declare class ControllerManager {
client: BotClient;
constructor(client: BotClient);
sendInput(controller: Controller): void;
}
export { Controller, ControllerManager };