koobor-sdk
Version:
Koobor Gaming Platform SDK
34 lines • 1 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Game = void 0;
var Game = /** @class */ (function () {
function Game(id, name, playerRegistryContractAddress) {
this._id = id;
this._name = name;
this._playerRegistryContractAddress = playerRegistryContractAddress;
}
Object.defineProperty(Game.prototype, "id", {
get: function () {
return this._id;
},
enumerable: false,
configurable: true
});
Object.defineProperty(Game.prototype, "name", {
get: function () {
return this._name;
},
enumerable: false,
configurable: true
});
Object.defineProperty(Game.prototype, "playerRegistryContractAddress", {
get: function () {
return this._playerRegistryContractAddress;
},
enumerable: false,
configurable: true
});
return Game;
}());
exports.Game = Game;
//# sourceMappingURL=Game.js.map