8 lines
No EOL
282 B
C#
8 lines
No EOL
282 B
C#
using System;
|
|
using System.IO;
|
|
using System.Linq;
|
|
|
|
Environment.CurrentDirectory = AppDomain.CurrentDomain.BaseDirectory;
|
|
int resMult = int.Parse(File.ReadLines("settings/resolution.txt").First());
|
|
using var game = new ONDClient.GameMain(640 * resMult, 360 * resMult);
|
|
game.Run(); |