updated to 0.12.0

This commit is contained in:
Ell 2021-06-17 19:46:15 +02:00
parent 22d39dc8fe
commit fe3a119a8b
2 changed files with 4 additions and 2 deletions

View file

@ -41,7 +41,9 @@ namespace ExampleMod {
// adding custom clothing
var darkShirt = new Clothes("ExampleMod.DarkShirt", ClothesLayer.Shirt,
this.customClothes[0, 0], // the top left in-world region (the rest will be auto-gathered from the atlas)
100, this.Icon, false, ColorScheme.WarmDark);
100, // the price
ClothesIntention.Everyday | ClothesIntention.Workout, // the clothes item's use cases
this.Icon, false, ColorScheme.WarmDark);
Clothes.Register(darkShirt);
// adding an event subscription to people

View file

@ -5,7 +5,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="TinyLifeApi" Version="0.11.0" />
<PackageReference Include="TinyLifeApi" Version="0.12.0" />
<PackageReference Include="ExtremelySimpleLogger" Version="1.2.1" />
<PackageReference Include="MLEM.Data" Version="4.3.0" />