Skip to content

Commit

Permalink
Empty constructor bodies on new line
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSpartaPT committed Oct 1, 2024
1 parent 1c891d5 commit 6e465a5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion Fuyu.Launcher/Store/ActiveGameUseCase/ActiveGamesState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ public class ActiveGameState
{
public string GameId { get; } = string.Empty;

public ActiveGameState() { }
public ActiveGameState()
{
}

public ActiveGameState(string gameId)
{
GameId = gameId;
Expand Down
5 changes: 4 additions & 1 deletion Fuyu.Launcher/Store/GamesUseCase/GamesState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ public class GamesState
public bool IsLoading { get; } = true;
public Dictionary<string, int?> Games { get; } = new();

public GamesState() { }
public GamesState()
{
}

public GamesState(bool isLoading, Dictionary<string, int?> games)
{
IsLoading = isLoading;
Expand Down
5 changes: 4 additions & 1 deletion Fuyu.Launcher/Store/SessionUseCase/SessionState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ public class SessionState

public bool IsLoggedIn { get; }

public SessionState() { }
public SessionState()
{
}

public SessionState(string username, bool isLoggedIn)
{
UserName = username;
Expand Down

0 comments on commit 6e465a5

Please sign in to comment.