Changeset 156 for adventure/world.py

Show
Ignore:
Timestamp:
04/27/08 13:35:42 (2 years ago)
Author:
thib
Message:

Quelques modifs ( World, Place et Thing héritent d'object )

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • adventure/world.py

    r147 r156  
    2828from thing import Thing, NonPlayableCharacter 
    2929 
    30 class World: 
     30class World(object): 
    3131    """ World class. 
    3232    Worlds have their own JID and correspond to an xml file """ 
     
    417417                    return True 
    418418        return False 
     419