AcademyPopcorn.TrailObject.TrailObject C# (CSharp) Method

TrailObject() public method

public TrailObject ( AcademyPopcorn.MatrixCoords topLeft, char body, int lifeTime ) : System
topLeft AcademyPopcorn.MatrixCoords
body char
lifeTime int
return System
        public TrailObject(MatrixCoords topLeft, char[,] body, int lifeTime)
            : base(topLeft, body)
        {
            this.LifeTime = lifeTime;
        }