mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-21 09:11:20 +00:00
- NioTSO client isn't needed because we're using RayLib - Added FreeSO's API server to handle most backend operations
20 lines
446 B
C#
Executable file
20 lines
446 B
C#
Executable file
namespace FSO.Server.Database.DA.Tuning
|
|
{
|
|
public class DbTuningPreset
|
|
{
|
|
public int preset_id;
|
|
public string name;
|
|
public string description;
|
|
public int flags;
|
|
}
|
|
|
|
public class DbTuningPresetItem
|
|
{
|
|
public int item_id;
|
|
public int preset_id;
|
|
public string tuning_type;
|
|
public int tuning_table;
|
|
public int tuning_index;
|
|
public float value;
|
|
}
|
|
}
|