11 lines
205 B
C#
11 lines
205 B
C#
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
namespace Invector
|
|
{
|
|
public class vItemAttributes : ScriptableObject
|
|
{
|
|
public List<string> attributes = new List<string>();
|
|
}
|
|
}
|
|
|