improved type names

This commit is contained in:
2021-06-23 21:55:39 -05:00
parent 5171baedd7
commit 85ea2d81a0
7 changed files with 48 additions and 66 deletions

View File

@@ -2,7 +2,7 @@
* Menu Functions
* @public
*/
declare namespace lua2take1 {
declare namespace type2take1 {
type Player = number;
type Entity = number;
type Ped = number;
@@ -12,4 +12,13 @@ declare namespace lua2take1 {
type Ptfx = number;
type Any = number;
type Thread = number;
type Feature = number;
type vector<T> = object;
type table<T> = vector<T>;
type uint32_t = number;
type integer = number;
type int = number;
type float = number;
}