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