Skip to content

Instantly share code, notes, and snippets.

@AnteaterKit
Created October 2, 2022 18:12
Show Gist options
  • Save AnteaterKit/a8d0be7fe0765781c372abd0c713403c to your computer and use it in GitHub Desktop.
Save AnteaterKit/a8d0be7fe0765781c372abd0c713403c to your computer and use it in GitHub Desktop.
WhiteBoard
export class WhiteBoard {
public whiteBoardState: WhiteBoardState;
toReadOnlyState() {
this.setState(new WhiteBoardReadOnlyState());
}
toShapeState(shapeType: ShapeTypes) {
this.setState(new WhiteBoardShapedState());
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment