summaryrefslogtreecommitdiff
path: root/src/TrainerMod/TrainerMod.csproj
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-07-02 01:32:07 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-07-02 01:32:07 -0400
commitf9482906ae7ce4dfd41bb4236e094be5d4fa7689 (patch)
treed1f881d2e44d39090c55f9290113a957bc031cad /src/TrainerMod/TrainerMod.csproj
parent6364e162f22973201b9da69f76db512005a5501e (diff)
downloadSMAPI-f9482906ae7ce4dfd41bb4236e094be5d4fa7689.tar.gz
SMAPI-f9482906ae7ce4dfd41bb4236e094be5d4fa7689.tar.bz2
SMAPI-f9482906ae7ce4dfd41bb4236e094be5d4fa7689.zip
split TrainerMod commands into separate classes (#302)
Diffstat (limited to 'src/TrainerMod/TrainerMod.csproj')
-rw-r--r--src/TrainerMod/TrainerMod.csproj41
1 files changed, 36 insertions, 5 deletions
diff --git a/src/TrainerMod/TrainerMod.csproj b/src/TrainerMod/TrainerMod.csproj
index 46d8bef9..1702c577 100644
--- a/src/TrainerMod/TrainerMod.csproj
+++ b/src/TrainerMod/TrainerMod.csproj
@@ -51,11 +51,42 @@
<Compile Include="..\GlobalAssemblyInfo.cs">
<Link>Properties\GlobalAssemblyInfo.cs</Link>
</Compile>
- <Compile Include="ItemData\ISearchItem.cs" />
- <Compile Include="ItemData\ItemType.cs" />
- <Compile Include="ItemData\SearchableObject.cs" />
- <Compile Include="ItemData\SearchableRing.cs" />
- <Compile Include="ItemData\SearchableWeapon.cs" />
+ <Compile Include="Framework\Commands\Other\ShowDataFilesCommand.cs" />
+ <Compile Include="Framework\Commands\Other\ShowGameFilesCommand.cs" />
+ <Compile Include="Framework\Commands\Other\DebugCommand.cs" />
+ <Compile Include="Framework\Commands\Player\ListItemsCommand.cs" />
+ <Compile Include="Framework\Commands\Player\AddWallpaperCommand.cs" />
+ <Compile Include="Framework\Commands\Player\AddFlooringCommand.cs" />
+ <Compile Include="Framework\Commands\Player\AddRingCommand.cs" />
+ <Compile Include="Framework\Commands\Player\AddWeaponCommand.cs" />
+ <Compile Include="Framework\Commands\Player\AddItemCommand.cs" />
+ <Compile Include="Framework\Commands\Player\SetStyleCommand.cs" />
+ <Compile Include="Framework\Commands\Player\SetColorCommand.cs" />
+ <Compile Include="Framework\Commands\Player\SetSpeedCommand.cs" />
+ <Compile Include="Framework\Commands\Player\SetLevelCommand.cs" />
+ <Compile Include="Framework\Commands\Player\SetMaxHealthCommand.cs" />
+ <Compile Include="Framework\Commands\Player\SetMaxStaminaCommand.cs" />
+ <Compile Include="Framework\Commands\Player\SetHealthCommand.cs" />
+ <Compile Include="Framework\Commands\Player\SetImmunityCommand.cs" />
+ <Compile Include="Framework\Commands\Player\SetStaminaCommand.cs" />
+ <Compile Include="Framework\Commands\Player\SetNameCommand.cs" />
+ <Compile Include="Framework\Commands\Player\SetMoneyCommand.cs" />
+ <Compile Include="Framework\Commands\Saves\LoadCommand.cs" />
+ <Compile Include="Framework\Commands\Saves\SaveCommand.cs" />
+ <Compile Include="Framework\Commands\TrainerCommand.cs" />
+ <Compile Include="Framework\Commands\World\SetMineLevelCommand.cs" />
+ <Compile Include="Framework\Commands\World\DownMineLevelCommand.cs" />
+ <Compile Include="Framework\Commands\World\SetYearCommand.cs" />
+ <Compile Include="Framework\Commands\World\SetSeasonCommand.cs" />
+ <Compile Include="Framework\Commands\World\SetDayCommand.cs" />
+ <Compile Include="Framework\Commands\World\SetTimeCommand.cs" />
+ <Compile Include="Framework\Commands\World\FreezeTimeCommand.cs" />
+ <Compile Include="Framework\ItemData\ISearchItem.cs" />
+ <Compile Include="Framework\ItemData\ItemType.cs" />
+ <Compile Include="Framework\ItemData\SearchableObject.cs" />
+ <Compile Include="Framework\ItemData\SearchableRing.cs" />
+ <Compile Include="Framework\ItemData\SearchableWeapon.cs" />
+ <Compile Include="Framework\Commands\ITrainerCommand.cs" />
<Compile Include="TrainerMod.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>