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:
8
CruiseAssist/Commons/Tuple.cs
Normal file
8
CruiseAssist/Commons/Tuple.cs
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user