#pragma once #include #include #include struct EXLRow { std::string name; int id; }; struct EXL { std::vector rows; }; EXL readEXL(std::string_view path);