mirror of
https://github.com/BubbaGumpShrump/AutoTrackR2.git
synced 2025-06-17 20:29:07 +00:00
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.
18 lines
No EOL
357 B
C#
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;
|
|
} |