UNPKG

fivem-js

Version:

Javascript/Typescript wrapper for the FiveM natives

8 lines (7 loc) 191 B
import { Color, Point, Size } from '../../utils/'; export interface IDrawable { pos: Point; size?: Size; color?: Color; draw(offset?: Size, resolution?: Size): void; }