Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/data/playa.py
blob: 2962e41b537067c812d8a746077094ffee3002b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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"