CutePet/Assets/Scripts/GameScene/Data/LevData.cs
2024-10-25 11:10:04 +08:00

14 lines
280 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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>();
}