1
0
mirror of https://github.com/soarqin/DSP_Mods_TO.git synced 2025-12-15 02:53:29 +08:00

Added CruiseAssist and AutoPilot

This commit is contained in:
2023-12-20 22:06:59 +08:00
parent 6f224902f8
commit b693006e0a
41 changed files with 3956 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
namespace CruiseAssist.Commons;
internal struct Tuple<T1, T2>(T1 v1, T2 v2)
{
public T1 Item1 { get; set; } = v1;
public T2 Item2 { get; set; } = v2;
}