mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-26 22:39:47 +08:00
20 lines
429 B
C#
20 lines
429 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BetterGenshinImpact.GameTask.AutoFishing;
|
|
|
|
public record RodInput
|
|
{
|
|
public double rod_x1;
|
|
public double rod_x2;
|
|
public double rod_y1;
|
|
public double rod_y2;
|
|
public double fish_x1;
|
|
public double fish_x2;
|
|
public double fish_y1;
|
|
public double fish_y2;
|
|
public int fish_label;
|
|
} |