Exemplo n.º 1
0
 /// <summary>
 /// This method generate a new bomb in the list
 /// </summary>
 private void AddBomb()
 {
     Bomb bomb = new Bomb(mSceneMgr);
     bomb.SetPosition(new Vector3(Mogre.Math.RangeRandom(0, 100), 100, Mogre.Math.RangeRandom(0, 100)));
     bombs.Add(bomb);
 }