Exemplo n.º 1
0
 public override void SetModInfo(out string name, ref ModProperties properties)
 {
     name = "Mharadium";
     properties.Autoload = true;
     properties.AutoloadGores = true;
     properties.AutoloadSounds = true;
 }
Exemplo n.º 2
0
		/*
         * Initializes the mod's information, such as its name.
         */
		internal void Init()
		{
			ModProperties properties = new ModProperties();
			properties.Autoload = false;
			SetModInfo(out name, ref properties);
			this.properties = properties;
		}
Exemplo n.º 3
0
        /*
         * Initializes the mod's information, such as its name.
         */
        internal void Init()
        {
            ModProperties properties = new ModProperties();

            properties.Autoload = false;
            SetModInfo(out name, ref properties);
            this.properties = properties;
        }
Exemplo n.º 4
0
        public Gyrolite()
        {
	        Properties = new ModProperties()
	        {                
		        Autoload = true,
		        AutoloadGores = true,
		        AutoloadSounds = true
	        };
        }
Exemplo n.º 5
0
 public EnergyMod()
 {
     Properties = new ModProperties()
     {
         Autoload = true,
         AutoloadGores = true,
         AutoloadSounds = true
     };
 }
        public override void SetModInfo(out string name, ref ModProperties properties)
        {
            name = "TerrariaPlusOne";
            properties.Autoload = true;
            properties.AutoloadGores = true;
            properties.AutoloadSounds = true;

            AddItem("WoodenSwordPlusOne", new WoodenSwordPlusOne(), "Items/Weapons");
        }
Exemplo n.º 7
0
 public SpiritMod()
 {
     Properties = new ModProperties()
     {
         Autoload = true,
         AutoloadGores = true,
         AutoloadSounds = true
     };
 }
Exemplo n.º 8
0
 public ExampleMod()
 {
     Properties = new ModProperties()
     {
         Autoload = true,
         AutoloadGores = true,
         AutoloadSounds = true,
         AutoloadBackgrounds = true
     };
 }
Exemplo n.º 9
0
 public abstract void SetModInfo(out string name, ref ModProperties properties);
Exemplo n.º 10
0
 public override void SetModInfo(out string name, ref ModProperties properties)
 {
     name = "ModLoader";
 }
Exemplo n.º 11
0
 public override void SetModInfo(out string name, ref ModProperties properties)
 {
     name = "AdaptableQuesting";
     properties.Autoload = true;
 }
Exemplo n.º 12
0
 public abstract void SetModInfo(out string name, ref ModProperties properties);
Exemplo n.º 13
0
 public override void SetModInfo(out string name, ref ModProperties properties)
 {
     name = "CalamityMod";
     properties.Autoload = true;
 }
Exemplo n.º 14
0
 public override void SetModInfo(out string name, ref ModProperties properties)
 {
     name = "Terradventure";
     properties.Autoload = true;
 }