diff options
| author | Zoryn <Zoryn4163@users.noreply.github.com> | 2016-03-20 17:23:32 -0400 |
|---|---|---|
| committer | Zoryn <Zoryn4163@users.noreply.github.com> | 2016-03-20 17:23:32 -0400 |
| commit | 1acd74119bfd421a4d5f07e85eea51d73787260b (patch) | |
| tree | bc6412ace28b81a018f04d95a20d48a4ddb5d53f /TrainerMod | |
| parent | 3ad423695d853be479b2998344f08154295addb8 (diff) | |
| parent | f0cb2c0e63c9e00a7a902a7729c862a569d21061 (diff) | |
| download | SMAPI-1acd74119bfd421a4d5f07e85eea51d73787260b.tar.gz SMAPI-1acd74119bfd421a4d5f07e85eea51d73787260b.tar.bz2 SMAPI-1acd74119bfd421a4d5f07e85eea51d73787260b.zip | |
Merge pull request #33 from Zoryn4163/master
Manifest structure - breaks all prior mods
Diffstat (limited to 'TrainerMod')
| -rw-r--r-- | TrainerMod/TrainerMod.cs | 2 | ||||
| -rw-r--r-- | TrainerMod/TrainerMod.csproj | 1 | ||||
| -rw-r--r-- | TrainerMod/manifest.json | 7 |
3 files changed, 10 insertions, 0 deletions
diff --git a/TrainerMod/TrainerMod.cs b/TrainerMod/TrainerMod.cs index e2482c5d..bed66b21 100644 --- a/TrainerMod/TrainerMod.cs +++ b/TrainerMod/TrainerMod.cs @@ -16,6 +16,7 @@ namespace TrainerMod {
public class TrainerMod : Mod
{
+ /*
public override string Name
{
get { return "Trainer Mod"; }
@@ -35,6 +36,7 @@ namespace TrainerMod {
get { return "Registers several commands to use. Most commands are trainer-like in that they offer forms of cheating."; }
}
+ */
public static int frozenTime;
public static bool infHealth, infStamina, infMoney, freezeTime;
diff --git a/TrainerMod/TrainerMod.csproj b/TrainerMod/TrainerMod.csproj index 2baa6a26..6424ecdb 100644 --- a/TrainerMod/TrainerMod.csproj +++ b/TrainerMod/TrainerMod.csproj @@ -85,6 +85,7 @@ </ProjectReference>
</ItemGroup>
<ItemGroup>
+ <None Include="manifest.json" />
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
diff --git a/TrainerMod/manifest.json b/TrainerMod/manifest.json new file mode 100644 index 00000000..a85f8dc3 --- /dev/null +++ b/TrainerMod/manifest.json @@ -0,0 +1,7 @@ +{ + "Name": "Trainer Mod", + "Authour": "Zoryn", + "Version": "1.0", + "Description": "Registers several commands to use. Most commands are trainer-like in that they offer forms of cheating.", + "EntryDll": "TrainerMod.dll" +}
\ No newline at end of file |
