Program.cs 237 B

1234567891011121314
  1. using System;
  2. namespace Flocking.Windows
  3. {
  4. public static class Program
  5. {
  6. [STAThread]
  7. static void Main()
  8. {
  9. using (var game = new FlockingSample())
  10. game.Run();
  11. }
  12. }
  13. }