SteamGameTimeTrack/Run/Program.cs
2025-05-25 18:37:27 +02:00

12 lines
165 B
C#

using API;
namespace Run;
class Program
{
static void Main(string[] args)
{
Api a = new (args);
Tracker.Tracker t = new ();
}
}