Bug.GameObjects.HitBox.HitBox C# (CSharp) Method

HitBox() public method

public HitBox ( Fighter parent, SoundEffect noise, List frames ) : System
parent Fighter
noise Microsoft.Xna.Framework.Audio.SoundEffect
frames List
return System
        public HitBox(Fighter parent, SoundEffect noise, List<HitBoxFrame> frames)
            : base()
        {
            this.parent = parent;
            this.noise = noise;
            this.elapsedTime = 0;
            this.index = 0;
            active = false;
            this.frames = frames;
        }