Files
2024-11-20 15:21:28 +01:00

12 lines
231 B
C#

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