20 lines
396 B
C#
20 lines
396 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace TRInventoryUpdatable
|
|
{
|
|
public class BodyPickableItem : MonoBehaviour, IPickable
|
|
{
|
|
public string bodyPartNameID;
|
|
|
|
public void Pickup()
|
|
{
|
|
//switch (switch_on)
|
|
//{
|
|
// default:
|
|
// break;
|
|
//}
|
|
}
|
|
}
|
|
} |