using System;using OpenTK.Windowing.GraphicsLibraryFramework;using Rhythm_Flow.Game;namespace Rhythm_Flow{ public class Program { static void Main(string[] args) { using (Game game = new Game()) { game.Run(); } } }}