2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-05-13 21:51:42 +00:00

chore: rename iw4/iw5 column id property to colId

This commit is contained in:
Jan
2024-05-19 13:31:53 +02:00
parent bfef9e2531
commit e8ab3ba92d
4 changed files with 6 additions and 6 deletions
@@ -34,7 +34,7 @@ namespace IW4
{
public:
std::string name;
int id;
int colId;
int propertyId;
bool hidden;
std::string statName;
@@ -43,7 +43,7 @@ namespace IW4
LbAggType aggregationFunction;
};
NLOHMANN_DEFINE_TYPE_EXTENSION(JsonColumnDef, name, id, propertyId, hidden, statName, type, precision, aggregationFunction);
NLOHMANN_DEFINE_TYPE_EXTENSION(JsonColumnDef, name, colId, propertyId, hidden, statName, type, precision, aggregationFunction);
class JsonLeaderboardDef
{