Files
Fishing2/Assets/Scripts/Fishing/Rope/IRope.cs
2026-04-06 11:35:18 +08:00

12 lines
179 B
C#

using UnityEngine;
namespace NBF
{
/// <summary>
/// 鱼线脚本
/// </summary>
public interface IRope
{
void SetLineLength(float length);
}
}