Mercurial > parpg-source
view bGrease/impl/__init__.py @ 132:e2ccd64f3a86
Split code off from createInventoryItems to createItemByID and createItemByType.
Entities with a containable component will now get the "item_type" field set to the Template, if that field is not present.
author | KarstenBock@gmx.net |
---|---|
date | Sat, 08 Oct 2011 14:18:16 +0200 |
parents | ff3e395abf91 |
children | a6bbb732b27b |
line wrap: on
line source
############################################################################# # # Copyright (c) 2010 by Casey Duncan and contributors # All Rights Reserved. # # This software is subject to the provisions of the MIT License # A copy of the license should accompany this distribution. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. # ############################################################################# __versioninfo__ = (0, 3, 0) __version__ = '.'.join(str(n) for n in __versioninfo__) __all__ = ('Mode', 'World') from mode import Mode from world import World