-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModHelperData.cs
More file actions
19 lines (16 loc) · 774 Bytes
/
ModHelperData.cs
File metadata and controls
19 lines (16 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace MiniTowersCollection;
public static class ModHelperData
{
public const string WorksOnVersion = "36.3";
public const string Version = "1.0.3";
public const string Name = "Mini Towers Collection";
public const string Description =
"Mini towers included:\n" +
"- Upgradeable Legend of the Night\n" +
"- Mr Stickman's personal tower\n" +
"- Tobyman009's personal tower\n" +
"- vasco's personal tower\n" +
"- More towers will be added soon!";
public const string RepoOwner = "bennik06"; // TODO add your github username hero, also in the download url in README.md
public const string RepoName = "Mini-Towers-Collection"; // TODO add your repo name here, also in the download url in README.md
}