12 lines
246 B
C#
12 lines
246 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace RoR2;
|
||
|
|
||
|
[CreateAssetMenu(menuName = "RoR2/ItemRelationshipProvider")]
|
||
|
public class ItemRelationshipProvider : ScriptableObject
|
||
|
{
|
||
|
public ItemRelationshipType relationshipType;
|
||
|
|
||
|
public ItemDef.Pair[] relationships;
|
||
|
}
|