Untitled
unknown
csharp
4 years ago
415 B
12
Indexable
using Terraria.ModLoader;
namespace WithBroomBetter.Common.Systems
{
public class KeybindSystem : ModSystem
{
public static ModKeybind PurityMountSlowdown { get; private set; }
public override void Load()
{
PurityMountSlowdown = KeybindLoader.RegisterKeybind(Mod, "Purity Shield Slowdown", "LeftShift");
}
public override void Unload()
{
PurityMountSlowdown = null;
}
}
}Editor is loading...