diff src/bridge/bridge_constructor/dbus_frontend_template.py @ 361:141eeb7cd9e6

Quizz game: first draft
author Goffi <goffi@goffi.org>
date Sun, 12 Jun 2011 16:28:33 +0200
parents eb9d33ba4e36
children 54c77a56b22f
line wrap: on
line diff
--- a/src/bridge/bridge_constructor/dbus_frontend_template.py	Mon Jun 06 21:55:59 2011 +0200
+++ b/src/bridge/bridge_constructor/dbus_frontend_template.py	Sun Jun 12 16:28:33 2011 +0200
@@ -81,6 +81,15 @@
     def tarotGamePlayCards(self, player, referee, cards, profile_key='@DEFAULT@'):
         return self.db_comm_iface.tarotGamePlayCards(player, referee, cards, profile_key)
 
+    def quizGameLaunch(self, players, profile_key='@DEFAULT@'):
+        return self.db_comm_iface.quizGameLaunch(players, profile_key)
+    
+    def quizGameCreate(self, room_jid, players, profile_key='@DEFAULT@'):
+        return self.db_comm_iface.quizGameCreate(room_jid, players, profile_key)
+
+    def quizGameReady(self, player, referee, profile_key='@DEFAULT@'):
+        return self.db_comm_iface.quizGameReady(player, referee, profile_key)
+
     def sendFile(self, to, path, profile_key='@DEFAULT@'):
         return self.db_comm_iface.sendFile(to, path, profile_key)