18 lines
493 B
C#
18 lines
493 B
C#
|
//======= Copyright (c) Valve Corporation, All rights reserved. ===============
|
|||
|
//
|
|||
|
// Purpose: Keeps track of the ItemPackage this object is a part of
|
|||
|
//
|
|||
|
//=============================================================================
|
|||
|
|
|||
|
using UnityEngine;
|
|||
|
using System.Collections;
|
|||
|
|
|||
|
namespace Valve.VR.InteractionSystem
|
|||
|
{
|
|||
|
//-------------------------------------------------------------------------
|
|||
|
public class ItemPackageReference : MonoBehaviour
|
|||
|
{
|
|||
|
public ItemPackage itemPackage;
|
|||
|
}
|
|||
|
}
|