AcademyPopcorn.TrailObject.TrailObject C# (CSharp) 메소드

TrailObject() 공개 메소드

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