/// <summary> /// The main entry point for the application. /// </summary> static void Main(string[] args) { using (VoxelShooter game = new VoxelShooter()) { game.Run(); } }
static void Main() { using (var game = new VoxelShooter()) game.Run(); }