12 lines
231 B
C#
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>();
|
|
}
|
|
}
|
|
|