Skip to content

Commit 9467bc9

Browse files
author
Faith
committed
Add some comments
1 parent 56f4f21 commit 9467bc9

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

BigPicture/Domain/DiscoverGames.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ public DiscoverGames()
2121
ProfileFolder = $"{basedir}resources\\configs\\";
2222
}
2323

24+
//Returns all list of GameProfiles that are found in Spectabis config folder
2425
public List<GameProfile> AllGames()
2526
{
2627
List<GameProfile> allGames = new List<GameProfile>();
@@ -52,6 +53,7 @@ public List<GameProfile> AllGames()
5253

5354
}
5455

56+
//Create a Bitmap image for GameProfile
5557
private BitmapImage NewImage(string imageLink)
5658
{
5759
BitmapImage artSource = new BitmapImage();

BigPicture/Model/GameProfile.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
namespace BigPicture.Model
99
{
10+
//Game profile model
1011
public class GameProfile
1112
{
1213
public string Title { get; set; }

0 commit comments

Comments
 (0)