Files
Fishing2/Assets/Scripts/Model/Common/Input/InteractiveObject.cs
2025-08-29 09:11:08 +08:00

10 lines
185 B
C#

using System;
using UnityEngine;
namespace NBF
{
public class InteractiveObject : MonoBehaviour
{
[Header("交互类型")] public UIDef.InteractiveType Type;
}
}