Files
BABA_YAGA/Assets/Invector-3rdPersonController/ItemManager/Scripts/vItemAttributes.cs
2026-05-30 09:16:35 +07:00

11 lines
205 B
C#

using UnityEngine;
using System.Collections.Generic;
namespace Invector
{
public class vItemAttributes : ScriptableObject
{
public List<string> attributes = new List<string>();
}
}