Click or drag to resize
BornEventHandler Delegate

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

This event may be fired once for your creature when it is first born, in which case the BornEventArgs might have some Dna from the parent, or none if the creatures were made by the Terrarium game engine during introduction.

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 BornEventHandler(
	Object sender,
	BornEventArgs e
)

Parameters

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