Files
Fishing2/Assets/Scripts/Fishing/InteractiveObject.cs
2025-05-20 00:22:31 +08:00

10 lines
185 B
C#

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