Untitled

Anonymous
csharp
06/17/2022 2:15 PM
556 B
28
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...