1
0
mirror of https://gitlab.com/hashborgir/d2tweaks-rnd2k.git synced 2025-05-01 00:25:33 +00:00
2024-04-16 21:45:38 -06:00

14 lines
187 B
C++

#pragma once
#include <cstdint>
namespace diablo2 {
namespace structures {
struct objects_bin;
struct object_data {
objects_bin* pt_objects_bin;
uint8_t level_id;
};
}
}