12 lines
392 B
C#
12 lines
392 B
C#
![]() |
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
// ReSharper disable once CheckNamespace
|
||
|
namespace BlueWaterProject
|
||
|
{
|
||
|
[CreateAssetMenu(fileName = "EnemyStatDataSo", menuName = "ScriptableObjects/EnemyStatData", order = 1)]
|
||
|
public class EnemyStatDataSo : ScriptableObject
|
||
|
{
|
||
|
public List<EnemyStat> enemyStatDataList = new(GlobalValue.ENEMY_STAT_DATA_CAPACITY);
|
||
|
}
|
||
|
}
|