12 lines
179 B
C#
12 lines
179 B
C#
using UnityEngine;
|
|
|
|
namespace NBF
|
|
{
|
|
/// <summary>
|
|
/// 鱼线脚本
|
|
/// </summary>
|
|
public interface IRope
|
|
{
|
|
void SetLineLength(float length);
|
|
}
|
|
} |