Danmaku_no_Kyojin.BulletEngine.Bullet.Bullet C# (CSharp) Method

Bullet() public method

Initializes a new instance of the BulletMLLib.Bullet class.
public Bullet ( DnK gameRef, IBulletManager myBulletManager ) : System
gameRef DnK
myBulletManager IBulletManager My bullet manager.
return System
        public Bullet(DnK gameRef, IBulletManager myBulletManager)
            : base(gameRef)
        {
            //grba the bullet manager for this dude
            Debug.Assert(null != myBulletManager);
            _bulletManager = myBulletManager;

            Acceleration = Vector2.Zero;

            _tasks = new List<BulletMLTask>();
            _fireData = new List<FireData>();
        }