CapersProject/Assets/02.Scripts/Tycoon/CardRareData.cs
2024-11-29 08:07:50 +09:00

18 lines
478 B
C#

using System;
using BlueWater.Interfaces;
using Sirenix.OdinInspector;
using UnityEngine;
namespace BlueWater
{
[Serializable]
public class CardRareData : IIdx
{
[BoxGroup("Json 데이터 영역")]
[field: SerializeField, Tooltip("Idx"), BoxGroup("Json 데이터 영역")]
public string Idx { get; set; }
[field: SerializeField, Tooltip("확률"), BoxGroup("Json 데이터 영역")]
public int Ratio { get; set; }
}
}