Terraria.ModLoader.ModHotkey.ModHotkey C# (CSharp) Method

ModHotkey() public method

public ModHotkey ( string name, Mod mod, string defaultKey )
name string
mod Mod
defaultKey string
		public ModHotkey(string name, Mod mod, string defaultKey)
		{
			this.name = name;
			this.mod = mod;
			//this.currentKey = currentKey;
			this.defaultKey = defaultKey;
			this.displayName = mod.Name + ": " + name;
			//configurationString = mod.Name + "_" + "HotKey" + "_" + name.Replace(' ', '_');
		}
	}
ModHotkey