asmrobot
2019-08-31 013a5eb0380063717241a9d6705557d9a59adbfe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using RichCreator.Utility.Structs;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
 
namespace RichCreator.Maps
{
    /// <summary>
    /// 地图信息
    /// </summary>
    public abstract class MapInfo
    {
        /// <summary>
        /// 地图名称
        /// </summary>
        public string MapName { get; set; }
 
        /// <summary>
        /// 开始刷图
        /// </summary>
        /// <returns></returns>
        public abstract bool Start(ZTRectangle gameRect, CancellationToken cancellationToken, Int32 runningStep);
 
 
 
 
    }
}