Skip to content

Commit

Permalink
tidy project layout
Browse files Browse the repository at this point in the history
  • Loading branch information
Blu3wolf committed Dec 15, 2017
1 parent 5f70cff commit 2e911cf
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
4 changes: 3 additions & 1 deletion 3DDBBuilderGUI/3DDBBuilderGUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<None Include="bin\Debug\B.BMP" />
<Content Include="3ddb_builder.exe">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
Binary file added 3DDBBuilderGUI/3ddb_builder.exe
Binary file not shown.
4 changes: 3 additions & 1 deletion 3DDBBuilderGUI/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -575,9 +575,11 @@ private void SetTextureNumberButton_Click(object sender, RoutedEventArgs e)
string path = dir + @"\" + TextureNumber.ToString() + ".BMP";
WriteTexture(path);
}
else // a texture file already exists
else // a texture file already exists - likely case is that a single texture file already exists
{
// rename it to a new name I guess
string message = "A texture file already exists in the source /Textures folder. Please delete it and try again.";
MessageBox.Show(message, "Error", MessageBoxButton.OK, MessageBoxImage.Error);
}
}
}
Expand Down
10 changes: 10 additions & 0 deletions 3DDBBuilderGUI/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2e911cf

Please sign in to comment.