Click or drag to resize
ReproduceCompletedEventHandler Delegate

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

This event will be fired for your creature immediately after it has given birth to a child creature of your species.

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 ReproduceCompletedEventHandler(
	Object sender,
	ReproduceCompletedEventArgs e
)

Parameters

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