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