Update main.cpp

Fix missing jjx include
This commit is contained in:
2025-03-19 12:32:24 -04:00
parent 13cc7f2104
commit 2f19b910de

View File

@@ -21,6 +21,7 @@
#include <ReWindow/Logger.h>
#include <Core/Tile.hpp>
#include <JGL/logger/logger.h>
#include <JJX/JSON.hpp>
std::string read_file(const std::string& file_path)
{
@@ -43,7 +44,7 @@ std::string read_file(const std::string& file_path)
int main(int argc, char** argv) {
using namespace JJX;
std::string content = read_file("data/tiles/base_tiles.json");
auto [text, parse_error] = json::parse(content);