Files
Dpr-ScriptsOnly/Assets/XLSXContent/TownMapGuideTable.cs
2023-07-14 14:42:33 -05:00

34 lines
544 B
C#

using System;
using UnityEngine;
namespace XLSXContent
{
[Serializable]
public class TownMapGuideTable
{
public object Item
{
get
{
return null;
}
}
public GameObject Guide;
[Serializable]
public class SheetGuide : ScriptableObject
{
public int Id;
public int TownMapX;
public int TownMapY;
public string MSFile;
public string MSLabel;
}
}
}