Skip to content

Instantly share code, notes, and snippets.

@NuckChorris
Created September 23, 2014 06:11
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 NuckChorris/25103595547eaad9df2d to your computer and use it in GitHub Desktop.
Save NuckChorris/25103595547eaad9df2d to your computer and use it in GitHub Desktop.
/**
* This class represents a possible question
*/
class Question {
constructor(question, answer) {
}
}
/**
* This class represents a possible answer
*/
class Answer {
constructor(id, html) {
}
}
/**
* This class represents a card and set of answers being displayed as well as the resultant answer.
*/
class Play {
constructor(question, answers) {
}
}
class
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment