C# Class FBLibrary.Core.BaseGameEventManager

Base class to manage all game events like game start, bomb planted, etc...
Mostrar archivo Open project: Noxalus/Final-Bomber

Public Methods

Method Description
Dispose ( ) : void
Initialize ( ) : void
OnPlayerDeath ( BasePlayer player ) : void
OnRoundEnd ( ) : void

Protected Methods

Method Description
PlayerDeathAction ( BasePlayer sender, EventArgs args ) : void
RoundEndAction ( ) : void

Method Details

Dispose() public method

public Dispose ( ) : void
return void

Initialize() public method

public Initialize ( ) : void
return void

OnPlayerDeath() public method

public OnPlayerDeath ( BasePlayer player ) : void
player BasePlayer
return void

OnRoundEnd() public method

public OnRoundEnd ( ) : void
return void

PlayerDeathAction() protected method

protected PlayerDeathAction ( BasePlayer sender, EventArgs args ) : void
sender BasePlayer
args System.EventArgs
return void

RoundEndAction() protected method

protected RoundEndAction ( ) : void
return void