We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56f4f21 commit 9467bc9Copy full SHA for 9467bc9
BigPicture/Domain/DiscoverGames.cs
@@ -21,6 +21,7 @@ public DiscoverGames()
21
ProfileFolder = $"{basedir}resources\\configs\\";
22
}
23
24
+ //Returns all list of GameProfiles that are found in Spectabis config folder
25
public List<GameProfile> AllGames()
26
{
27
List<GameProfile> allGames = new List<GameProfile>();
@@ -52,6 +53,7 @@ public List<GameProfile> AllGames()
52
53
54
55
56
+ //Create a Bitmap image for GameProfile
57
private BitmapImage NewImage(string imageLink)
58
59
BitmapImage artSource = new BitmapImage();
BigPicture/Model/GameProfile.cs
@@ -7,6 +7,7 @@
7
8
namespace BigPicture.Model
9
10
+ //Game profile model
11
public class GameProfile
12
13
public string Title { get; set; }
0 commit comments