You've already forked Dpr-ScriptsOnly
mirror of
https://github.com/izzy2lost/Dpr-ScriptsOnly.git
synced 2026-03-10 11:49:05 -07:00
18 lines
327 B
C#
18 lines
327 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace XLSXContent
|
|
{
|
|
[Serializable]
|
|
public class GrowTable : ScriptableObject
|
|
{
|
|
public List<GrowTable.SheetData> Data;
|
|
|
|
[Serializable]
|
|
public class SheetData
|
|
{
|
|
public uint[] exps;
|
|
}
|
|
}
|
|
} |