node-insim
Version:
An InSim library for NodeJS with TypeScript support
17 lines (16 loc) • 524 B
TypeScript
import { Struct } from '../base';
import type { StructData } from '../types';
export declare class CarContOBJ extends Struct {
/** Car's motion if Speed > 0: 0 = world y direction, 128 = 180 deg */
Direction: number;
/** Direction of forward axis: 0 = world y direction, 128 = 180 deg */
Heading: number;
/** m/s */
Speed: number;
Zbyte: number;
/** Position (1 metre = 16) */
X: number;
/** Position (1 metre = 16) */
Y: number;
constructor(data?: StructData<CarContOBJ>);
}