-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathModHelperData.cs
More file actions
13 lines (10 loc) · 1.43 KB
/
ModHelperData.cs
File metadata and controls
13 lines (10 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace CustomizableTower;
public static class ModHelperData
{
public const string WorksOnVersion = "51.0";
public const string Version = "3.1.2";
public const string Name = "Customizable Tower";
public const string Description = "Adds a Completely Customizable Tower to The Game. You Can Customize it's Stats in The Config For The Mod.\n\nPlease don't use this in competitive modes, one: it could get your account flagged, and two: it ruins the fun for others.\n Join the Discord! https://discord.gg/xegnVEBRuE \nIf you want to change any displays/icons for the tower simply download this source code and change the pngs and compile the mod yourself. \nYou'll need Visual Studio and .net 6.0. In the mod menu create a mod called CustomizableTower and put the source code into the mod folder.\nYou can see where the mod sources are kept in the config for the Mod Helper.\nAfter that open the .sln file which should be called CustomizableTower.sln and go to build and click on Build CustomizableTower, Build Solution (which is used when you have multiple projects in the solution) or press Ctrl+B.\nMake sure you delete the original .dll first. For questions ask me on discord: @lerpmcgerk";
public const string RepoOwner = "DarkTerraYT"; // TODO add your github username hero, also in the download url in README.md
public const string RepoName = "CustomizableTower"; // TODO add your repo name here, also in the download url in README.md
}