2023-08-28 19:52:23 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
|
|
namespace BlueWaterProject
|
|
|
|
{
|
|
|
|
[CreateAssetMenu(fileName = "UnitDataSo", menuName = "ScriptableObjects/UnitData", order = 2)]
|
|
|
|
public class UnitDataSo : ScriptableObject
|
|
|
|
{
|
2023-08-30 05:18:09 +00:00
|
|
|
public List<Unit> unitDataList = new(GlobalValue.UNIT_DATA_CAPACITY);
|
2023-08-28 19:52:23 +00:00
|
|
|
}
|
|
|
|
}
|