MyPolarBear.GameObjects.PolarBear.PolarBear C# (CSharp) Method

PolarBear() public method

public PolarBear ( Vector2 position ) : System
position Vector2
return System
        public PolarBear(Vector2 position)
            : base(position)
        {
            power = Power.Normal;
            Scale = 1;
            IsAlive = true;
            mScale = new Vector2(Scale, Scale);
            MaxHitPoints = 5;
            CurHitPoints = 5;

            mInvincibleDelay = 500.0f;
            mInvincibleDeltaTime = 0;

            //bGivingCommands = false;
        }