25 lines
405 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|
|
|