_TheStrongestSnail/TheStrongestSnail/Assets/Scripts/RacingPanel/HorseInfo.cs

19 lines
349 B
C#
Raw Normal View History

2024-11-27 23:40:28 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class HorseInfo : MonoBehaviour
{
public int KnightId { get; set; }
public int HorseNo { get; set; }
public int HorseUserNo { get; set; }
public float HorseBeansCoin { get; set; }
public Text numText;
}