koobor-sdk
Version:
Koobor Gaming Platform SDK
18 lines • 530 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.KooborContext = void 0;
var KooborContext = /** @class */ (function () {
function KooborContext(game) {
this._game = game;
}
Object.defineProperty(KooborContext.prototype, "game", {
get: function () {
return this._game;
},
enumerable: false,
configurable: true
});
return KooborContext;
}());
exports.KooborContext = KooborContext;
//# sourceMappingURL=KooborContext.js.map