IndieGame/client/Assets/Scripts/Map/Data/TileProperty.cs
DOBEST\zhaoyingjie f242607587 初始化工程
2024-10-11 10:12:15 +08:00

19 lines
292 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Ether
{
[Serializable]
public class TileProperty
{
public Vector2Int tileCoordinate;
public GridType gridType;
public bool boolTypeValue;
}
}