-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Factions and FactionsExtensions classes
- Loading branch information
Konrad Jamrozik
committed
Jun 13, 2024
1 parent
b6c604f
commit eccb44a
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
using System.Text.Json.Serialization; | ||
|
||
namespace UfoGameLib.Model; | ||
|
||
public class Factions : List<Faction> | ||
{ | ||
[JsonConstructor] | ||
public Factions() | ||
{ | ||
} | ||
|
||
public Factions(IEnumerable<Faction>? factions = null) | ||
=> AddRange(factions ?? new List<Faction>()); | ||
|
||
public Factions DeepClone() | ||
=> new Factions(this.Select(faction => faction.DeepClone())); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace UfoGameLib.Model; | ||
|
||
public static class FactionsExtensions | ||
{ | ||
public static Factions ToFactions(this IEnumerable<Faction> factionsEnumerable) | ||
=> new Factions(factionsEnumerable); | ||
} |