Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/data/playa.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/data/playa.py')
-rw-r--r--src/data/playa.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/data/playa.py b/src/data/playa.py
new file mode 100644
index 0000000..2962e41
--- /dev/null
+++ b/src/data/playa.py
@@ -0,0 +1,15 @@
+# To change this template, choose Tools | Templates
+# and open the template in the editor.
+
+__author__="nexo"
+__date__ ="$17/10/2012 06:32:45 PM$"
+
+from lugar import Lugar
+
+class Playa(Lugar):
+ def cargarDatos(self):
+ self.nombre = "playa"
+ self.cosasPermitidas = [("chancletas", 2), ("gorrosol", 1), ("short", 1), ("biquini", 1), ("lentes", 2), ("sombrero", 3)]
+
+if __name__ == "__main__":
+ print "Hello World"