Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

21 lignes
562 B

  1. using System;
  2. public class LocalGameState
  3. {
  4. public LocalGameState(Version localGameVersion, string localSaveStateGuid, string installGuid, bool isNewInstall)
  5. {
  6. this.LocalGameVersion = localGameVersion;
  7. this.LocalSaveStateGuid = localSaveStateGuid;
  8. this.InstallGuid = installGuid;
  9. this.IsNewInstall = isNewInstall;
  10. }
  11. public Version LocalGameVersion { get; private set; }
  12. public string LocalSaveStateGuid { get; private set; }
  13. public string InstallGuid { get; private set; }
  14. public bool IsNewInstall { get; private set; }
  15. }