diff --git a/LuckyDefusePlugin.cs b/LuckyDefusePlugin.cs
index 54ff54c..f2870ae 100644
--- a/LuckyDefusePlugin.cs
+++ b/LuckyDefusePlugin.cs
@@ -36,8 +36,8 @@ public class LuckyDefusePlugin : BasePlugin, IPluginConfig<PluginConfig>
     ];
     private CCSPlayerController? _defuser;
     private CCSPlayerController? _planter;
-    private readonly CenterHtmlMenu _planterMenu;
-    private readonly CenterHtmlMenu _defuserMenu;
+    private readonly WireMenu _planterMenu;
+    private readonly WireMenu _defuserMenu;
     private int _wire;
     private bool _wireChosenManually = false;
 
diff --git a/CenterHtmlMenu.cs b/WireMenu.cs
similarity index 95%
rename from CenterHtmlMenu.cs
rename to WireMenu.cs
index df05436..4b81ea1 100644
--- a/CenterHtmlMenu.cs
+++ b/WireMenu.cs
@@ -3,7 +3,7 @@
 
 namespace LuckyDefusePlugin;
 
-public class CenterHtmlMenu(BasePlugin plugin, string title, string[] options)
+public class WireMenu(BasePlugin plugin, string title, string[] options)
 {
     public delegate void OptionConfirmedEventHandler(int option);
     public event OptionConfirmedEventHandler OnOptionConfirmed = delegate {};