d2tweaks-rnd2k/include/diablo2/structures/data/monmode_line.h

15 lines
165 B
C
Raw Normal View History

2024-04-17 03:45:38 +00:00
#pragma once
#include <cstdint>
namespace diablo2 {
namespace structures {
struct monmode_line {
union {
uint32_t code;
char str[4];
};
};
}
}