Untitled

 avatar
unknown
csharp
3 years ago
415 B
7
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...