diff --git a/Qwirkle/QwirkleClassLibrary/Score.cs b/Qwirkle/QwirkleClassLibrary/Score.cs index 4bb3253..db38754 100644 --- a/Qwirkle/QwirkleClassLibrary/Score.cs +++ b/Qwirkle/QwirkleClassLibrary/Score.cs @@ -1,26 +1,26 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace QwirkleClassLibrary -{ - public struct Score - { - private int PlayerScore { get; set; } - public string PlayerTag { get; } - - public Score(Player? p) - { - if (p == null) - { - throw new NullReferenceException(); - } - else - { PlayerScore = 0; - PlayerTag = p.NameTag; - } - } - } -} +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace QwirkleClassLibrary +{ + public struct Score + { + private int PlayerScore { get; set; } + public string PlayerTag { get; } + + public Score(Player? p) + { + if (p == null) + { + throw new NullReferenceException("player"); + } + else + { PlayerScore = 0; + PlayerTag = p.NameTag; + } + } + } +}