2026-03-21 21:23:33 +01:00
|
|
|
|
using System;
|
2026-03-29 18:15:32 +02:00
|
|
|
|
using System.IO;
|
|
|
|
|
|
using System.Linq;
|
2026-03-21 21:23:33 +01:00
|
|
|
|
|
|
|
|
|
|
Environment.CurrentDirectory = AppDomain.CurrentDomain.BaseDirectory;
|
2026-03-29 18:15:32 +02:00
|
|
|
|
int resMult = int.Parse(File.ReadLines("settings/resolution.txt").First());
|
|
|
|
|
|
using var game = new ONDClient.GameMain(640 * resMult, 360 * resMult);
|
2025-12-19 17:54:50 +01:00
|
|
|
|
game.Run();
|