Class Warhead
Handles warhead related events.
public class Warhead
- Inheritance
-
Warhead
- Inherited Members
- Extension Methods
Properties
ChangingLeverStatus
Invoked before changing the warhead lever status.
public static Event<ChangingLeverStatusEventArgs> ChangingLeverStatus { get; set; }
Property Value
DeadmanSwitchInitiating
Invoked before the DeadmanSwitch is Initiated.
public static Event<DeadmanSwitchInitiatingEventArgs> DeadmanSwitchInitiating { get; set; }
Property Value
Detonated
Invoked after the warhead has been detonated.
public static Event Detonated { get; set; }
Property Value
Detonating
Invoked before detonating the warhead.
public static Event<DetonatingEventArgs> Detonating { get; set; }
Property Value
Starting
Invoked before starting the warhead.
public static Event<StartingEventArgs> Starting { get; set; }
Property Value
Stopping
Invoked before stopping the warhead.
public static Event<StoppingEventArgs> Stopping { get; set; }
Property Value
Methods
OnChangingLeverStatus(ChangingLeverStatusEventArgs)
Called before changing the warhead lever status.
public static void OnChangingLeverStatus(ChangingLeverStatusEventArgs ev)
Parameters
ev
ChangingLeverStatusEventArgsThe ChangingLeverStatusEventArgs instance.
OnDeadmanSwitchInitiating(DeadmanSwitchInitiatingEventArgs)
Called after the warhead has been detonated.
public static void OnDeadmanSwitchInitiating(DeadmanSwitchInitiatingEventArgs ev)
Parameters
ev
DeadmanSwitchInitiatingEventArgsThe DeadmanSwitchInitiatingEventArgs instance.
OnDetonated()
Called after the warhead has been detonated.
public static void OnDetonated()
OnDetonating(DetonatingEventArgs)
Called before detonating the warhead.
public static void OnDetonating(DetonatingEventArgs ev)
Parameters
ev
DetonatingEventArgsThe DetonatingEventArgs instance.
OnStarting(StartingEventArgs)
Called before starting the warhead.
public static void OnStarting(StartingEventArgs ev)
Parameters
ev
StartingEventArgsThe StartingEventArgs instance.
OnStopping(StoppingEventArgs)
Called before stopping the warhead.
public static void OnStopping(StoppingEventArgs ev)
Parameters
ev
StoppingEventArgsThe StoppingEventArgs instance.