comparison entities/character.py @ 41:ff3e395abf91

Renamed grease to bGrease (Basic Grease) to get rid of conflicts with an already installed grease.
author KarstenBock@gmx.net
date Mon, 05 Sep 2011 15:00:34 +0200
parents 59ea103917ae
children 8f9e9f47c363
comparison
equal deleted inserted replaced
40:2e3ab06a2f47 41:ff3e395abf91
9 # GNU General Public License for more details. 9 # GNU General Public License for more details.
10 10
11 # You should have received a copy of the GNU General Public License 11 # You should have received a copy of the GNU General Public License
12 # along with this program. If not, see <http://www.gnu.org/licenses/>. 12 # along with this program. If not, see <http://www.gnu.org/licenses/>.
13 13
14 from parpg.grease import Entity 14 from bGrease import Entity
15 from parpg.grease.geometry import Vec2d 15 from bGrease.geometry import Vec2d
16 16
17 class Character(Entity): 17 class Character(Entity):
18 def __init__(self, world, view_name, real_name, desc, statistics, max_bulk, 18 def __init__(self, world, view_name, real_name, desc, statistics, max_bulk,
19 identifier, layer=None, behaviour=None, gfx=None, 19 identifier, layer=None, behaviour=None, gfx=None,
20 pos=Vec2d(0.0, 0.0), items=None 20 pos=Vec2d(0.0, 0.0), items=None