Exemplo n.º 1
0
 public LevelLocalEvent(GameObject player, GameObject pGObj, Level pLevel, EventType pEvt) : this(pLevel, pEvt)
 {
     stork   = player as Stork;
     gameObj = pGObj;
 }
Exemplo n.º 2
0
 public LevelLocalEvent(GameObject player, DroneGameObject pDrone, Level pLevel, EventType pEvt) : this(pLevel, pEvt)
 {
     stork = player as Stork;
     drone = pDrone;
 }
Exemplo n.º 3
0
 public StorkLocalEvent(Stork pStork, GameObject pEnemy, Event pEvt)
 {
     this.stork = pStork;
     this.enemy = pEnemy;
     this.evt   = pEvt;
 }
Exemplo n.º 4
0
 public LevelLocalEvent(int pIndex, Stork pStork, Color pColor, Level pLevel, EventType pEvt) : this(pLevel, pEvt)
 {
     stork = pStork;
     index = pIndex;
     color = pColor;
 }
Exemplo n.º 5
0
 public StorkLocalEvent(Stork pStork, Event pEvt)
 {
     this.stork = pStork;
     this.evt   = pEvt;
 }