You've already forked Dpr-ScriptsOnly
mirror of
https://github.com/izzy2lost/Dpr-ScriptsOnly.git
synced 2026-03-10 11:49:05 -07:00
19 lines
327 B
C#
19 lines
327 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace XLSXContent
|
|
{
|
|
[Serializable]
|
|
public class EvolveTable : ScriptableObject
|
|
{
|
|
public EvolveTable.SheetEvolve[] Evolve;
|
|
|
|
[Serializable]
|
|
public class SheetEvolve
|
|
{
|
|
public int id;
|
|
public ushort[] ar;
|
|
}
|
|
}
|
|
}
|