AutoTrackR2/AutoTrackR2/LocalPlayerData.cs
Heavy Bob 2cd80970a4 Removed Buttons, fixed application detect + other stuff
When attempting to run the app and close, it wouldn't actually close...
Set default states when starcitizen isn't running to unknown.
Start reading file when starcitizen is detected. Stop when starcitizen isn't running.

Issue, Need to fix reading file when game is already running.
2025-04-07 10:11:12 +10:00

18 lines
No EOL
357 B
C#

namespace AutoTrackR2;
public enum GameMode
{
Unknown,
PersistentUniverse,
ArenaCommander
}
public static class LocalPlayerData
{
public static string? Username;
public static string? PlayerShip;
public static string? GameVersion;
public static GameMode CurrentGameMode;
public static string? LastSeenVehicleLocation;
}