Skip to content

Commit cabe24b

Browse files
committed
Create PrintRooms project to export palace rooms as PNGs
Things left to do: - Draw more enemies like Drippers - Draw dirt (the logic for this is weird - not sure I want to spend the time) PrintRooms also generates a HTML file that displays all the generated room images along with information from the JSON file.
1 parent 6a6d8e2 commit cabe24b

5 files changed

Lines changed: 1000 additions & 0 deletions

File tree

PrintRooms/PrintRooms.csproj

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
<Platforms>AnyCPU;x64</Platforms>
8+
</PropertyGroup>
9+
10+
<ItemGroup>
11+
<PackageReference Include="SkiaSharp" Version="$(SkiaSharpVersion)" />
12+
</ItemGroup>
13+
14+
<ItemGroup>
15+
<ProjectReference Include="..\RandomizerCore\RandomizerCore.csproj" />
16+
</ItemGroup>
17+
18+
</Project>

0 commit comments

Comments
 (0)