31 lines
772 B
C#
31 lines
772 B
C#
/// <summary>
|
|
///********************************************************
|
|
/// 脚本功能:所有数据
|
|
/// 创建人: GD
|
|
/// 创建时间: 2023/09/20 11:35
|
|
///********************************************************
|
|
/// </summary>
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using ZXKFramework;
|
|
namespace YiLiao.XinFeiTingZhen
|
|
{
|
|
public class GameModel : Model
|
|
{
|
|
public override string Name => "XinFeiTingZhen";
|
|
public BaseData bData;
|
|
public ExcelData excelData = new();
|
|
|
|
public IEnumerator Init()
|
|
{
|
|
yield return excelData.Init(Name);
|
|
}
|
|
|
|
public void ChangeState(string stateName)
|
|
{
|
|
bData = excelData.GetBaseDatastate(stateName);
|
|
}
|
|
}
|
|
}
|
|
|