10 lines
218 B
C#
10 lines
218 B
C#
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace Game
|
||
|
{
|
||
|
public class EquipmentConfigObject : ScriptableObject
|
||
|
{
|
||
|
public List<EquipmentConfig> configs = new List<EquipmentConfig>();
|
||
|
}
|
||
|
}
|