Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Utilidades/bin/python/InvocarConstructorPUI.py
blob: 68274e233b598984bf25ccc48eb105fe9ae132a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
#! /usr/bin/env python
import pygame, sys, os
import PuiModule
#from pygame import *

if __name__ == "__main__":
	pygame.init()
	pui = PuiModule.Pui()
	print 'Luego de construir Pui'
	pygame.quit()
	print 'Fin del programa!!'