Click or drag to resize
AttackCompletedEventHandler Delegate

Describes the event handler required in order to hook into a creature's AttackCompleted event. The sender will always be your creature, and AttackCompletedEventArgs will be filled with information to help your creature process it's turn.

This event will be fired after every attack your creature initiates. The returned AttackCompletedEventArgs will contain information about damage dealt, whether the creature is dead, or whether it got away.

Namespace: Terrarium.Sdk.Classes.Creature.Events
Assembly: Terrarium.Sdk (in Terrarium.Sdk.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax
public delegate void AttackCompletedEventHandler(
	Object sender,
	AttackCompletedEventArgs e
)

Parameters

sender
Type: SystemObject
e
Type: Terrarium.Sdk.Classes.Creature.EventsAttackCompletedEventArgs
See Also