gentyl
Version:
A Generator That You'll Love
19 lines (18 loc) • 535 B
JavaScript
var Gentyl;
(function (Gentyl) {
var Inventory;
(function (Inventory) {
function placeInput(input) {
this._placed = input;
}
Inventory.placeInput = placeInput;
function pickupInput(obj, arg) {
return this._placed;
}
Inventory.pickupInput = pickupInput;
function retract(obj, arg) {
return arg;
}
Inventory.retract = retract;
})(Inventory = Gentyl.Inventory || (Gentyl.Inventory = {}));
})(Gentyl || (Gentyl = {}));