You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
376 B
JavaScript

// Show the characters
SLIDES.push({
id: "tournament",
onstart: function(self){
},
onend: function(self){
self.clear();
}
});
// round-robin tournament, place your bets
SLIDES.push({
onstart: function(self){
}
});
// go through it ONE BY ONE
SLIDES.push({
onstart: function(self){
}
});
// who the winner is!
SLIDES.push({
onstart: function(self){
}
});