You've already forked Dpr-ScriptsOnly
mirror of
https://github.com/izzy2lost/Dpr-ScriptsOnly.git
synced 2026-03-10 11:49:05 -07:00
28 lines
407 B
C#
28 lines
407 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace XLSXContent
|
|
{
|
|
[Serializable]
|
|
public class GimmickGraphics : ScriptableObject
|
|
{
|
|
public GimmickGraphics()
|
|
{
|
|
|
|
}
|
|
|
|
public SheetData[] Data;
|
|
|
|
[Serializable]
|
|
public class SheetData
|
|
{
|
|
public SheetData()
|
|
{
|
|
|
|
}
|
|
|
|
public string AssetPath;
|
|
}
|
|
}
|
|
}
|