UNPKG

@nativewrappers/client

Version:

Javascript/Typescript wrapper for the FiveM natives

11 lines (10 loc) 180 B
export class PointF { constructor(x, y, z) { this.x = x; this.y = y; this.z = z; } static empty() { return new PointF(0, 0, 0); } }