Files
BITFALL/Assets/Artists/Scripts/Quest/QuestItemProperties.cs
CortexCore 3109cb218f 1
2024-04-06 16:33:57 +08:00

16 lines
275 B
C#

using System;
using System.Collections;
using System.Collections.Generic;
using BITKit;
using UnityEngine;
namespace BITFALL.Quest
{
[Serializable]
public struct IsQuestItem : IProperty
{
public override string ToString() => "<color=yellow>任务物品</color>";
}
}