@nativewrappers/redm
Version:
Native wrappers and utilities for use with RedM.
18 lines (17 loc) • 319 B
JavaScript
var __defProp = Object.defineProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
class Pickup {
static {
__name(this, "Pickup");
}
handle;
constructor(handle) {
this.handle = handle;
}
get Handle() {
return this.handle;
}
}
export {
Pickup
};