예제 #1
0
 static void Profiles(string[] args = null)
 {
     if (args.Length < 1)
     {
         PrettyPrinter.PrintGameProfiles(ProfileManager.GetAllProfiles());
     }
     else
     {
         SmartParser.PrintProfile(args);
     }
 }