Skip to content

Commit

Permalink
minor refactorings
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgraeffe committed Nov 6, 2024
1 parent a10953c commit 211d9e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions LuckyDefusePlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
2 changes: 1 addition & 1 deletion CenterHtmlMenu.cs → WireMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {};
Expand Down

0 comments on commit 211d9e7

Please sign in to comment.