少年修仙传客户端代码仓库
client_Zxw
2019-01-28 ae044ded41371ce2b90938509f09c8bd1309112c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Collections.Generic;
using UnityEngine;
 
public class MapCombine : ScriptableObject
{
    public string mainFileName;
    public List<MapCombineInfo> dataList;
 
    [System.Serializable]
    public class MapCombineInfo
    {
        public string fileName;
        public int offsetX;
        public int offsetY;
    }
}