Esempio n. 1
0
 private void Bite(SnakePrototype snakeToBite)
 {
     //fire event: eventBus.Publish(new SnakeBitedEvent(this, snakeToBite))
     snakeToBite.Shorten();
     this.Grow();
 }
Esempio n. 2
0
 private void Bite(SnakePrototype snakeToBite)
 {
     //fire event: eventBus.Publish(new SnakeBitedEvent(this, snakeToBite))
     snakeToBite.Shorten();
     this.Grow();
 }