Autoload() public method

public Autoload ( string &name, string &texture ) : bool
name string
texture string
return bool
Ejemplo n.º 1
0
        private void AutoloadBuff(Type type)
        {
            ModBuff buff = (ModBuff)Activator.CreateInstance(type);

            buff.mod = this;
            string name    = type.Name;
            string texture = (type.Namespace + "." + type.Name).Replace('.', '/');

            if (buff.Autoload(ref name, ref texture))
            {
                AddBuff(name, buff, texture);
            }
        }