14 lines
228 B
C#
14 lines
228 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
/// <summary>
|
|
/// 每一个萌宠的信息
|
|
/// </summary>
|
|
public class PetInfo
|
|
{
|
|
public string res;
|
|
public float post_x;
|
|
public float post_y;
|
|
}
|