Make constructor protected

This commit is contained in:
Koisu 2025-06-27 10:29:26 -07:00
parent e9727c45a0
commit cda33df0b0

View file

@ -14,7 +14,7 @@ public class BasePluginHotkey
/// Initializes a new instance of the <see cref="BasePluginHotkey"/> class with the specified hotkey type. /// Initializes a new instance of the <see cref="BasePluginHotkey"/> class with the specified hotkey type.
/// </summary> /// </summary>
/// <param name="type"></param> /// <param name="type"></param>
public BasePluginHotkey(HotkeyType type) protected BasePluginHotkey(HotkeyType type)
{ {
HotkeyType = type; HotkeyType = type;
} }