コード例 #1
0
 private void Bite(SnakePrototype snakeToBite)
 {
     //fire event: eventBus.Publish(new SnakeBitedEvent(this, snakeToBite))
     snakeToBite.Shorten();
     this.Grow();
 }
コード例 #2
0
 private void Bite(SnakePrototype snakeToBite)
 {
     //fire event: eventBus.Publish(new SnakeBitedEvent(this, snakeToBite))
     snakeToBite.Shorten();
     this.Grow();
 }