Mercurial > parpg-source
comparison grease/__init__.py @ 7:710f299ed275
Made sure that the modules in the current directory are imported, and not those
in the python path
author | KarstenBock@gmx.net |
---|---|
date | Tue, 12 Jul 2011 12:30:41 +0200 |
parents | bc88f7d5ca8b |
children |
comparison
equal
deleted
inserted
replaced
6:ce33d344e202 | 7:710f299ed275 |
---|---|
14 __versioninfo__ = (0, 3, 0) | 14 __versioninfo__ = (0, 3, 0) |
15 __version__ = '.'.join(str(n) for n in __versioninfo__) | 15 __version__ = '.'.join(str(n) for n in __versioninfo__) |
16 | 16 |
17 __all__ = ('BaseWorld', 'Entity', 'System', 'Renderer') | 17 __all__ = ('BaseWorld', 'Entity', 'System', 'Renderer') |
18 | 18 |
19 import grease.component | 19 import component |
20 import grease.geometry | 20 import geometry |
21 import grease.collision | 21 import collision |
22 from grease.entity import Entity | 22 from entity import Entity |
23 from grease.world import BaseWorld | 23 from world import BaseWorld |
24 | 24 |
25 import abc | 25 import abc |
26 | 26 |
27 class System(object): | 27 class System(object): |
28 """Grease system abstract base class. Systems define behaviorial aspects | 28 """Grease system abstract base class. Systems define behaviorial aspects |