mirror of
https://gitlab.com/hashborgir/d2tweaks-rnd2k.git
synced 2024-12-02 13:45:58 +00:00
12 lines
141 B
C++
12 lines
141 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace diablo2 {
|
|
namespace structures {
|
|
struct linkage {
|
|
void* link;
|
|
uint32_t unk[3];
|
|
};
|
|
}
|
|
} |