1
0
mirror of https://gitlab.com/hashborgir/d2tweaks-rnd2k.git synced 2025-05-02 00:55:33 +00:00
2024-04-16 21:45:38 -06:00

16 lines
213 B
C++

#pragma once
#include <cstdint>
namespace diablo2 {
namespace structures {
struct properties_line {
uint16_t prop;
uint8_t set[8];
uint16_t val[7];
uint8_t func[8];
uint16_t stat[7];
};
}
}