This commit is contained in:
2021-06-27 20:27:03 -05:00
commit cbd4520e12
42 changed files with 1836 additions and 0 deletions

13
RAGE/Object.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
/**
* Object Functions
* @public
* @noSelf
*/
declare namespace object {
function create_object(model: Hash, pos: v3, networked: boolean, dynamic: boolean): Object ;
function get_all_objects(): vector<Object>;
function get_all_pickups(): vector<Pickup>;
}