1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-23 22:37:55 +02:00

Moved json files to new directory, split on per-class basis

This commit is contained in:
Ivan Savenko
2024-02-11 23:09:01 +02:00
parent 9ebd194ab1
commit c3957c2c2a
131 changed files with 2164 additions and 653 deletions

View File

@@ -10,7 +10,8 @@
#include "StdInc.h"
#include "Colors.h"
#include "../../lib/JsonNode.h"
#include "../../lib/json/JsonNode.h"
const ColorRGBA Colors::YELLOW = { 229, 215, 123, ColorRGBA::ALPHA_OPAQUE };
const ColorRGBA Colors::WHITE = { 255, 243, 222, ColorRGBA::ALPHA_OPAQUE };
@@ -48,4 +49,4 @@ std::optional<ColorRGBA> Colors::parseColor(std::string text)
}
return std::nullopt;
}
}