This wiki is archived and useful information is being migrated to the main bzflag.org website

Register

From BZFlagWiki
Revision as of 18:49, 12 February 2012 by Blast (Talk | contribs) (Reverted edits by 82.198.1.1 (talk) to last revision by Sigonasr2)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

bool Register (bz_eEventType eventType)


Registers a new event handler. This event handler will receive events of the event type specified.

Parameters:
eventType  -  The type of event to listen for
Returns:
Whether or not the register was successful.


Example

void SAMPLE_PLUGIN::Init ( const char* /*commandLine*/ )
{
	Register(bz_ePlayerUpdateEvent);
}

More information on this function can be found on the BZFS_API_2.4_Upgrade page.