JinChanChan/Assets/Scripts/Game/Config/EquipmentConfigObject.cs

10 lines
218 B
C#
Raw Normal View History

using System.Collections.Generic;
using UnityEngine;
namespace Game
{
public class EquipmentConfigObject : ScriptableObject
{
public List<EquipmentConfig> configs = new List<EquipmentConfig>();
}
}