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

ModHotKey() private method

private ModHotKey ( Mod mod, string name, string defaultKey ) : System.Collections.Generic
mod Mod
name string
defaultKey string
return System.Collections.Generic
        internal ModHotKey(Mod mod, string name, string defaultKey)
        {
            this.mod = mod;
            this.name = name;
            this.defaultKey = defaultKey;
            this.displayName = mod.Name + ": " + name;
        }