Ctrl_Space.Gameplay.EnemyShip.Reset C# (CSharp) Method

Reset() public method

public Reset ( Vector2 position, World world, Ship target ) : void
position Vector2
world World
target Ship
return void
        public void Reset(Vector2 position, World world, Ship target)
        {
            _target = target;
            base.Reset(position, world);

            _weapon = new PlasmaGun(this);
        }