trust/js/slides/3_Slides_Tournament.js
2017-07-12 14:59:22 -04:00

34 lines
No EOL
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){
}
});