Mercurial > parpg-core
diff src/parpg/grease/__init__.py @ 29:ad18c3f912c5
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 | 09b581087d68 |
children |
line wrap: on
line diff
--- a/src/parpg/grease/__init__.py Tue Jul 12 12:29:42 2011 +0200 +++ b/src/parpg/grease/__init__.py Tue Jul 12 12:30:41 2011 +0200 @@ -16,11 +16,11 @@ __all__ = ('BaseWorld', 'Entity', 'System', 'Renderer') -import grease.component -import grease.geometry -import grease.collision -from grease.entity import Entity -from grease.world import BaseWorld +import component +import geometry +import collision +from entity import Entity +from world import BaseWorld import abc