Entity
interface Entity {
angle: Angle;
data: number;
id: number;
position: BaseVec3;
type: number;
velocity: BaseVec3;
}Source: state.ts:95
Represent an entity
interface Entity {
angle: Angle;
data: number;
id: number;
position: BaseVec3;
type: number;
velocity: BaseVec3;
}Source: state.ts:95
Represent an entity
angle: Angledata: numberid: numberposition: BaseVec3type: numbervelocity: BaseVec3