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