Added entity heal capabilities/

This was SVN commit r3127.
This commit is contained in:
pyrolink
2005-11-13 06:42:12 +00:00
parent f27cab84f8
commit 9cf709ff5a
6 changed files with 35 additions and 3 deletions
+5 -1
View File
@@ -7,7 +7,11 @@ CEventAttack::CEventAttack( CEntity* target ) : CScriptEvent( L"attack", EVENT_A
m_target = target;
AddLocalProperty( L"target", &m_target );
}
CEventHeal::CEventHeal( CEntity* target ) : CScriptEvent( L"heal", EVENT_HEAL, true)
{
m_target=target;
AddLocalProperty( L"target", &target );
}
CEventGather::CEventGather( CEntity* target ) : CScriptEvent( L"gather", EVENT_GATHER, true )
{
m_target = target;