aboutsummaryrefslogtreecommitdiffstats
path: root/code/ui/phase/PhaseInfo.razor
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2023-07-27 22:30:22 +0100
committerLeonardo Bishop <me@leonardobishop.com>2023-07-27 22:30:22 +0100
commit8b69e65e51507118b014a0426ae6f957b78a0707 (patch)
treec1507990c5f5cc05a4e9000c295618ac85524f9a /code/ui/phase/PhaseInfo.razor
parent71db52c5443a7bf82d9a23a770994a42b043be04 (diff)
Reformat
Diffstat (limited to 'code/ui/phase/PhaseInfo.razor')
-rw-r--r--code/ui/phase/PhaseInfo.razor18
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();
+ }
}