Team Fortress 2 Source Code as on 22/4/2020
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
498 B

  1. using System;
  2. using System.Text.RegularExpressions;
  3. using System.Collections;
  4. using System.IO;
  5. namespace MapSorter
  6. {
  7. /// <summary>
  8. /// Summary description for Class1.
  9. /// </summary>
  10. class Class1
  11. {
  12. /// <summary>
  13. /// The main entry point for the application.
  14. /// </summary>
  15. [STAThread]
  16. static void Main(string[] args)
  17. {
  18. if( args.Length != 1 )
  19. {
  20. Console.WriteLine("Usage: MapSorter <filename.map>");
  21. return;
  22. }
  23. new MapFileLoader(args[0]).DumpReport();
  24. }
  25. }
  26. }