// Member methods
 public void InstallApplication(TextEditor te, Game game, HardDrive hardDrive, RAM ram, GPU gpu)
 {
     if (CheckRequirements(te, game, hardDrive, ram, gpu))
     {
         if (te == null)
         {
             hardDrive.applications.Add(game);
             hardDrive.ConsumeStorage(game.requiredStorage);
         }
         else
         {
             hardDrive.applications.Add(te);
             hardDrive.ConsumeStorage(te.requiredStorage);
         }
     }
     else
     {
         Console.WriteLine("You do not have enough resources to install this applicaiton.");
     }
 }