diff src/parpg/components/fifeagent.py @ 53:7c6e2e39b545

Move setup_behaviour method of the Character entity to a function in fifeagent.py
author KarstenBock@gmx.net
date Sun, 04 Sep 2011 16:25:23 +0200
parents 1cc037593517
children 23563e30da66
line wrap: on
line diff
--- a/src/parpg/components/fifeagent.py	Sun Sep 04 15:19:47 2011 +0200
+++ b/src/parpg/components/fifeagent.py	Sun Sep 04 16:25:23 2011 +0200
@@ -19,3 +19,9 @@
     def __init__(self):
         """Constructor"""
         Component.__init__(self, identifier=int, layer=object, behaviour=object, gfx=str)
+
+        
+def setup_behaviour(agent):
+    """Attach the behaviour to the layer"""
+    if agent.behaviour:        
+        agent.behaviour.attachToLayer(agent.identifier)
\ No newline at end of file