We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d597066 commit 06e279eCopy full SHA for 06e279e
src/games/moonsquad.ts
@@ -46,7 +46,6 @@ interface IMoveState extends IIndividualState {
46
export interface IMoonSquadState extends IAPGameState {
47
winner: playerid[];
48
stack: Array<IMoveState>;
49
- startpos: CellContents[];
50
};
51
52
export class MoonSquadGame extends GameBase {
@@ -84,7 +83,6 @@ export class MoonSquadGame extends GameBase {
84
83
public stack!: Array<IMoveState>;
85
public results: Array<APMoveResult> = [];
86
public variants: string[] = [];
87
- public startpos: CellContents[] = [];
88
private highlights: string[] = [];
89
private dots: string[] = [];
90
0 commit comments