12 lines
423 B
C#
12 lines
423 B
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace BlueWaterProject
|
|
{
|
|
[CreateAssetMenu(fileName = "PirateUnitStatDataSo", menuName = "ScriptableObjects/PirateUnitStatData", order = 6)]
|
|
public class PirateUnitStatDataSo : ScriptableObject
|
|
{
|
|
public List<PirateUnitStat> pirateUnitStatDataList = new(GlobalValue.PIRATE_UNIT_STAT_DATA_CAPACITY);
|
|
}
|
|
} |