14 lines
242 B
C#
14 lines
242 B
C#
using UnityEngine;
|
|
|
|
namespace Invector.vItemManager
|
|
{
|
|
[System.Serializable]
|
|
public class vEquipProperties
|
|
{
|
|
public vItem targetItem;
|
|
public GameObject sender;
|
|
public Transform targetEquipPoint;
|
|
}
|
|
}
|
|
|