Files
2take1-scripts/ts-lua/types/2take1.d.ts
2021-06-24 23:56:08 -05:00

32 lines
564 B
TypeScript

/**
* Menu Functions
* @public
*/
type Player = number;
type Entity = number;
type Ped = number;
type Vehicle = number;
type Group = number;
type Hash = number;
type Pickup = Hash;
type Ptfx = number;
type Any = number;
type Thread = number;
type Feature = number;
// C++ Types
type vector<T> = object;
type uint8_t = number;
type uint32_t = number;
type int32_t = number;
type uint64_t = number;
type integer = number;
type int = number;
type float = number;
type BYTE = number;
//type wstring = string;
// lua C++ adjacent types
type table<T> = vector<T>;