public Bullet CreateNew()
		{
			Bullet newBullet = new Bullet ();

			if (BulletCreated != null)
			{
				BulletCreated (newBullet);
			}

			return newBullet;
		}
Esempio n. 2
0
	void HandleBulletCreated(Bullet newBullet)
	{
		AddChild (newBullet);
		bullets.Add (newBullet);
	}