Files
Fishing2/Assets/Scripts/Fishing~/Player/Animations/BobThrowAnim.cs

17 lines
262 B
C#

using NBC;
namespace NBF
{
/// <summary>
/// 浮漂
/// </summary>
public class BobThrowAnim : NTask
{
private FPlayer _player;
public BobThrowAnim(FPlayer player)
{
_player = player;
}
}
}