Untitled

mail@pastecode.io avatar
unknown
csharp
2 years ago
415 B
3
Indexable
Never
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;
		}
	}
}