2023-08-23 07:24:31 +00:00
|
|
|
using System;
|
2023-08-29 03:41:24 +00:00
|
|
|
using BlueWaterProject;
|
2023-08-23 07:24:31 +00:00
|
|
|
using UnityEngine;
|
2023-08-23 01:10:33 +00:00
|
|
|
|
|
|
|
namespace _02.Scripts.WaterAndShip
|
|
|
|
{
|
2023-08-23 07:24:31 +00:00
|
|
|
[Serializable]
|
2023-08-29 03:41:24 +00:00
|
|
|
public class Card : IIdx
|
2023-08-23 01:10:33 +00:00
|
|
|
{
|
2023-08-28 19:52:23 +00:00
|
|
|
[field: Tooltip("고유 인덱스")]
|
2023-08-23 07:24:31 +00:00
|
|
|
[field: SerializeField] public string Idx { get; set; }
|
2023-08-28 19:52:23 +00:00
|
|
|
|
|
|
|
[field: Tooltip("유닛 인덱스")]
|
|
|
|
[field: SerializeField] public string UnitIdx { get; set; }
|
2023-08-23 01:10:33 +00:00
|
|
|
}
|
|
|
|
}
|