Files @ 62d349a8db2f
Branch filter:

Location: ATITD-Tools/Desert-Paint-Codex/Services/SettingKey.cs

Jason Maltzen
Fix the PaintMix export format - use the PracticalPaint internal names for ingredients, and remove excess whitespace. Also, don't export a recipe for colors that don't have a recipe.
namespace DesertPaintCodex.Services
{
    public static class SettingKey
    {
        public const string PixelMultiplier = "pixelmultiplier";
        public const string ScreenIndex     = "screenindex";
        public const string ScreenX         = "screenx";
        public const string ScreenY         = "screeny";
        public const string ScreenWidth     = "screenwidth";
        public const string ScreenHeight    = "screenheight";
    }
}