21 lines
334 B
C#
21 lines
334 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using ZXKFramework;
|
|
|
|
public class ShiTuData : Model
|
|
{
|
|
public ExcelData excelData = new ExcelData();
|
|
public override string Name => "ShiTuData";
|
|
|
|
public void Init()
|
|
{
|
|
excelData.Init();
|
|
}
|
|
|
|
public void ToRest()
|
|
{
|
|
|
|
}
|
|
}
|