diff frontends/wix/main_window.py @ 81:104a815bb23f

Tarot game: first draft - wix: first draft of cards window - shell script to split cards from Tarot game found on wikimedia commons
author Goffi <goffi@goffi.org>
date Sun, 18 Apr 2010 15:47:10 +1000
parents 9681f18d06bd
children fc7583282d40
line wrap: on
line diff
--- a/frontends/wix/main_window.py	Thu Apr 01 18:57:57 2010 +1100
+++ b/frontends/wix/main_window.py	Sun Apr 18 15:47:10 2010 +1000
@@ -26,6 +26,7 @@
 import wx
 from contact_list import ContactList
 from chat import Chat
+from card_game import CardGame
 from param import Param
 from form import Form
 from gateways import GatewaysManager
@@ -109,7 +110,10 @@
         self.profile_pan = ProfileManager(self) 
         #self.profile_pan.Hide()  #gof:
         self.sizer.Add(self.profile_pan, 1, flag=wx.EXPAND)
-        
+       
+        Tarot = CardGame(self)
+        Tarot.Show()#gof: temp for test
+
         self.Show()
 
     def plug_profile(self, profile_key='@DEFAULT@'):