This commit is contained in:
建喵 2022-08-09 14:14:27 +08:00
parent 41ec8bd70e
commit aafd91facd
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,13 @@
import SlotBase from "./Base/SlotBase";
export class Slot32 extends SlotBase {
//#region public
public get ID(): number { return 32; }
public get HasRetriggerFreeSpin(): boolean { return true; }
//#endregion
}
export default Slot32;

View File

@ -0,0 +1,13 @@
import SlotBase from "./Base/SlotBase";
export class Slot34 extends SlotBase {
//#region public
public get ID(): number { return 34; }
public get HasRetriggerFreeSpin(): boolean { return true; }
//#endregion
}
export default Slot34;