d2tweaks-rnd2k/include/diablo2/structures/object_data.h

14 lines
187 B
C
Raw Normal View History

2024-04-17 03:45:38 +00:00
#pragma once
#include <cstdint>
namespace diablo2 {
namespace structures {
struct objects_bin;
struct object_data {
objects_bin* pt_objects_bin;
uint8_t level_id;
};
}
}