trust/js/slides/3_Slides_Tournament.js

34 lines
376 B
JavaScript
Raw Normal View History

2017-07-12 18:59:22 +00:00
// 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){
}
});