14 lines
280 B
C#
14 lines
280 B
C#
using System.Collections;
|
||
using System.Collections.Generic;
|
||
using UnityEngine;
|
||
|
||
/// <summary>
|
||
/// 关卡的信息,包括id,名字,所有萌宠的信息
|
||
/// </summary>
|
||
public class LevData
|
||
{
|
||
public int id;
|
||
public string name;
|
||
public List<PetInfo> petInfoList=new List<PetInfo>();
|
||
}
|