mirror of
https://gitlab.com/hashborgir/d2tweaks-rnd2k.git
synced 2024-12-02 21:55:58 +00:00
16 lines
213 B
C++
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];
|
|
};
|
|
}
|
|
}
|