Street_Fighter.Fighter.Fighter C# (CSharp) Method

Fighter() protected method

protected Fighter ( Vector2 posicao ) : System.Collections.Generic
posicao Microsoft.Xna.Framework.Vector2
return System.Collections.Generic
        protected Fighter(Vector2 posicao)
        {
            this.actions = new List<Action>();
            this.life = 1000;
            Body = BodyFactory.Instance.CreateRectangleBody(88, 10, 90);
            Body.Position = posicao;
            Geometry = GeomFactory.Instance.CreateRectangleGeom(Body, 88, 10);
        }