/// <summary>
 /// Constructs an instruction set to select the daily reward
 /// </summary>
 /// <param name="game"></param>
 public InGameRewardInstructionSet(SteamGame game) : base(game)
 {
     // Load an image to help validate if we are on the game screen with the rewards up
     _screenValidationImage = ImageWizard.LoadImage("Paladins\\images\\DailyRewardScreenThumbnail.png");
 }
 /// <summary>
 /// Constructs the instruction set
 /// </summary>
 /// <param name="game">the Steam game to run the instructions on</param>
 public LoadingGameScreenInstructionSet(SteamGame game) : base(game)
 {
     // Load an image to help validate if we are on the pre-game after-login screen
     _screenValidationImage = ImageWizard.LoadImage("Paladins\\images\\ReadyToPlayScreenThumbnail.png");
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Constructs the login instruction set
 /// </summary>
 /// <param name="game">the Steam game to run the instructions on</param>
 public LoginInstructionSet(SteamGame game) : base(game)
 {
     // Load an image to help validate if we are on the login screen
     _screenValidationImage = ImageWizard.LoadImage("Paladins\\images\\LoginScreenThumbnail.png");
 }