WXMC/.svn/pristine/9d/9d0ae8ad852ee3c53895e6f7eb1e0680e4084ad7.svn-base
2024-12-04 16:18:46 +08:00

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,
}