2025-05-09 10:20:30 +08:00

25 lines
405 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace ZXKFramework
{
public class ZhiXueKeModel : Model
{
public ExcelData excelData = new ExcelData();
public override string Name => "ZhiXueKeModel";
public void Init()
{
excelData.Init();
}
public void ResetData()
{
}
}
}