Files
2026-06-04 10:42:23 +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>();
}
}