SunsetHigh.Projectile.Projectile C# (CSharp) Method

Projectile() public method

Initializes a Projectile at the origin with a default speed and heading east.
public Projectile ( ) : System
return System
        public Projectile()
            : this(0, 0, DEFAULT_SPEED, DEFAULT_ANGLE)
        {
        }

Same methods

Projectile::Projectile ( float speed, Direction dir ) : System
Projectile::Projectile ( float speed, float angle ) : System
Projectile::Projectile ( int x, int y, float speed, Direction dir ) : System
Projectile::Projectile ( int x, int y, float speed, float angle ) : System
Projectile::Projectile ( int x, int y, int width, int height ) : System
Projectile::Projectile ( int x, int y, int width, int height, float speed, Direction dir ) : System
Projectile::Projectile ( int x, int y, int width, int height, float speed, float angle ) : System