forked from MaxRS07/BTD6-DPS-Display
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ModHelperData.cs
16 lines (13 loc) · 915 Bytes
/
ModHelperData.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace BetterDPS;
public static class ModHelperData
{
public const string WorksOnVersion = "40.0";
public const string Version = "1.0.0";
public const string Name = "DPS Display";
public const string Description = "Displays your damage per second at the top of the screen next to the cash counter. \n" +
"-Select a tower to get it dps stats \n" +
"-Press the information button to show the advanced display which shows the AVG dps and MAX dps over the selected period (works with selected tower)\n" +
"-Click and drag to reposition mod UI. Press F12 to reset UI positions and Double Press F12 to lock UI in place";
public const string RepoOwner = "Moddingus"; // TODO add your github username hero, also in the download url in README.md
public const string RepoName = "BTD6 DPS Display"; // TODO add your repo name here, also in the download url in README.md
}