Board.Board.Copy C# (CSharp) Method

Copy() public method

public Copy ( Board other ) : void
other Board
return void
        public void Copy(Board other)
        {
            this.basemap = other.basemap;
            this.nowmap = other.nowmap;
            this.maxid = other.maxid;
            this.pass = other.pass;
            this.name = other.name;
            this.time = other.time;
            Invalidate();
        }