mirror of
https://gitlab.com/hashborgir/d2tweaks-rnd2k.git
synced 2024-12-02 13:45:58 +00:00
15 lines
166 B
C
15 lines
166 B
C
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace diablo2 {
|
||
|
namespace structures {
|
||
|
struct bodylocs_line {
|
||
|
union {
|
||
|
uint32_t code;
|
||
|
char str[4];
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
}
|