Skip to content

Instantly share code, notes, and snippets.

@MarcinusX
Created January 13, 2019 05:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MarcinusX/6ff9118b1af337c58e20c36f15ac90db to your computer and use it in GitHub Desktop.
Save MarcinusX/6ff9118b1af337c58e20c36f15ac90db to your computer and use it in GitHub Desktop.
class Note {
final int orderNumber;
final int line;
NoteState state = NoteState.ready;
Note(this.orderNumber, this.line);
}
enum NoteState { ready, tapped, missed }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment