Program.cs 274 B

1234567891011121314151617
  1. using System;
  2. namespace Samples.FXAA
  3. {
  4. public static class Program
  5. {
  6. [STAThread]
  7. static void Main(string[] args)
  8. {
  9. using (FXAAGame game = new FXAAGame())
  10. {
  11. game.Run();
  12. }
  13. }
  14. }
  15. }