Archived
1
Fork 0
This repository has been archived on 2025-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
libxiv/include/exlparser.h

16 lines
210 B
C
Raw Normal View History

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