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