dynamicpixels-typescript-sdk
Version:
This sdk will help you to connect your game's to the DynamicPixels
34 lines • 769 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.Unlock = exports.Step = exports.Achievement = void 0;
class Achievement {
constructor() {
this.id = 0;
this.name = "";
this.desc = "";
this.image = "";
this.start_at = "";
this.end_at = "";
this.steps = [];
}
}
exports.Achievement = Achievement;
class Step {
constructor() {
this.id = 0;
this.name = "";
this.point = 0;
this.payload = "";
this.unlocked = false;
}
}
exports.Step = Step;
class Unlock {
constructor() {
this.player = 0;
this.achievement = 0;
this.step = 0;
}
}
exports.Unlock = Unlock;
//# sourceMappingURL=achievement.js.map