slotify.js
Version:
A video slot game session framework for JavaScript
43 lines (42 loc) • 1.41 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ReelGameSessionWinningScatterModel = void 0;
var ReelGameSessionWinningScatterModel = /** @class */ (function () {
function ReelGameSessionWinningScatterModel() {
this._itemId = "";
this._itemsPositions = [];
this._winningAmount = 0;
}
Object.defineProperty(ReelGameSessionWinningScatterModel.prototype, "winningAmount", {
get: function () {
return this._winningAmount;
},
set: function (value) {
this._winningAmount = value;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ReelGameSessionWinningScatterModel.prototype, "itemsPositions", {
get: function () {
return this._itemsPositions;
},
set: function (value) {
this._itemsPositions = value;
},
enumerable: false,
configurable: true
});
Object.defineProperty(ReelGameSessionWinningScatterModel.prototype, "itemId", {
get: function () {
return this._itemId;
},
set: function (value) {
this._itemId = value;
},
enumerable: false,
configurable: true
});
return ReelGameSessionWinningScatterModel;
}());
exports.ReelGameSessionWinningScatterModel = ReelGameSessionWinningScatterModel;