WIP
DirectOutput framework for virtual pinball cabinets WIP
Go to:
Overview 
NullEffect.cs
Go to the documentation of this file.
1 
5 namespace DirectOutput.FX.NullFX
6 {
10  public class NullEffect:EffectBase
11  {
12 
17  public override void Trigger(Table.TableElementData TableElementData)
18  {
19  //No work is done here
20  }
21 
26  public override void Init(Table.Table Table)
27  {
28  //Nothing is happening here
29  }
30  }
31 }
override void Init(Table.Table Table)
Init must do all necessary initialization work after the NullEffect object has been instanciated ...
Definition: NullEffect.cs:26
Abstract base class for IEffect objects. This class inherits NamedItemBase and implements IEffect...
Definition: EffectBase.cs:15
override void Trigger(Table.TableElementData TableElementData)
Triggers the NullEffect for the given TableElementData.
Definition: NullEffect.cs:17
The NullEffect is a empty effect no doing anything.
Definition: NullEffect.cs:10