changed types and added utils/sw

This commit is contained in:
2021-06-23 22:11:41 -05:00
parent 22b23f39cd
commit c7dffb0727
8 changed files with 73 additions and 54 deletions

View File

@@ -2,25 +2,29 @@
* Menu Functions
* @public
*/
declare namespace type2take1 {
type Player = number;
type Entity = number;
type Ped = number;
type Vehicle = number;
type Group = number;
type Hash = number;
type Ptfx = number;
type Any = number;
type Thread = number;
type Feature = number;
type Player = number;
type Entity = number;
type Ped = number;
type Vehicle = number;
type Group = number;
type Hash = number;
type Ptfx = number;
type Any = number;
type Thread = number;
type vector<T> = object;
type table<T> = vector<T>;
type uint8_t = number;
type uint32_t = number;
type uint64_t = number;
type integer = number;
type int = number;
type float = number;
}
type Feature = number;
// C++ Types
type vector<T> = object;
type uint8_t = number;
type uint32_t = number;
type uint64_t = number;
type integer = number;
type int = number;
type float = number;
//type wstring = string;
// lua C++ adjacent types
type table<T> = vector<T>;