Initial commit

This commit is contained in:
Hash Borgir
2024-04-16 21:45:38 -06:00
commit 3159020c38
533 changed files with 135446 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
#include <cstdint>
namespace diablo2 {
namespace structures {
struct playerclass_line {
union {
uint32_t code;
char str[4];
};
};
}
}