Files

28 lines
633 B
C#
Raw Permalink Normal View History

2025-01-25 04:38:09 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Thousandto.Launcher.ExternalLibs
{
/// <summary>
/// 地图Tile
/// </summary>
public class MapTile
{
public int id;
public int x;
public int z;
public List<MapPortal> portalList;
public List<MapCell> bigAreaList;
public List<MapCell> middleAreaList;
public List<MapCell> smallAreaList;
public int tileSize = 128;
public int portalSize;
public int bigAreaSize;
public int middleAreaSize;
public int smallAreaSize;
}
}