diff options
Diffstat (limited to 'code/ui/phase/PhaseInfo.razor')
| -rw-r--r-- | code/ui/phase/PhaseInfo.razor | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/code/ui/phase/PhaseInfo.razor b/code/ui/phase/PhaseInfo.razor index 74bf237..4509259 100644 --- a/code/ui/phase/PhaseInfo.razor +++ b/code/ui/phase/PhaseInfo.razor @@ -6,18 +6,18 @@ @attribute [StyleSheet]
<div>
- @GetPhase().Title
+ @GetPhase().Title
</div>
@code
{
- public BasePhase GetPhase()
- {
- return MurderGame.Instance.CurrentPhase;
- }
+ public BasePhase GetPhase()
+ {
+ return MurderGame.Instance.CurrentPhase;
+ }
- protected override int BuildHash() - { - return GetPhase().GetHashCode(); - }
+ protected override int BuildHash() + { + return GetPhase().GetHashCode(); + }
}
|
