You've already forked Dpr-ScriptsOnly
mirror of
https://github.com/izzy2lost/Dpr-ScriptsOnly.git
synced 2026-03-10 11:49:05 -07:00
21 lines
359 B
C#
21 lines
359 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace XLSXContent
|
|
{
|
|
[Serializable]
|
|
public class RareFishTable : ScriptableObject
|
|
{
|
|
public List<Sheettengan> tengan;
|
|
|
|
[Serializable]
|
|
public class Sheettengan
|
|
{
|
|
public int X_axis;
|
|
|
|
public int Y_axis;
|
|
}
|
|
}
|
|
}
|