33 lines
463 B
Plaintext
33 lines
463 B
Plaintext
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class PHomeMBTITag : PHomeInventoryItem
|
|
{
|
|
[SerializeField]
|
|
protected TagType m_tag;
|
|
public TagType Tag
|
|
{
|
|
get
|
|
{
|
|
return m_tag;
|
|
}
|
|
set
|
|
{
|
|
if (m_tag != value)
|
|
{
|
|
m_tag = value;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
public enum TagType
|
|
{
|
|
TagE,
|
|
TagI,
|
|
TagS,
|
|
TagN,
|
|
}
|