Exemplo n.º 1
0
 public OnEndFXModule(System.Action <LogicEntity> callback)
 {
     OnEndFX = delegate(LogicEntity e) { callback(e); };
 }
Exemplo n.º 2
0
 public OnRepeatFXModule(System.Action <LogicEntity> callback, int _waitFrames = 1)
 {
     OnRepeatFX = delegate(LogicEntity e) { callback(e); };
     waitFrames = _waitFrames;
 }