2023-08-23 07:24:31 +00:00
|
|
|
using System;
|
2023-08-23 01:10:33 +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-23 01:10:33 +00:00
|
|
|
public class Card
|
|
|
|
{
|
2023-08-23 07:24:31 +00:00
|
|
|
[field: SerializeField] public string Idx { get; set; }
|
|
|
|
[field: SerializeField] public Unit Unit { get; set; }
|
2023-08-23 01:10:33 +00:00
|
|
|
}
|
|
|
|
}
|