aboutsummaryrefslogtreecommitdiffstats
path: root/code/ui/overlay/RoleOverlay.cs
diff options
context:
space:
mode:
Diffstat (limited to 'code/ui/overlay/RoleOverlay.cs')
-rw-r--r--code/ui/overlay/RoleOverlay.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/code/ui/overlay/RoleOverlay.cs b/code/ui/overlay/RoleOverlay.cs
deleted file mode 100644
index 300d0bf..0000000
--- a/code/ui/overlay/RoleOverlay.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using Sandbox;
-
-namespace MurderGame;
-
-public partial class RoleOverlay
-{
- [ClientRpc]
- public static void Show( )
- {
- Instance.SetClass( "hidden", false );
- Instance.ShowOverlay = true;
- }
-
- [ClientRpc]
- public static void Hide()
- {
- Instance.SetClass( "hidden", true );
- Instance.ShowOverlay = false;
- }
-}