mirror of
https://gitlab.com/hashborgir/d2tweaks-rnd2k.git
synced 2024-12-02 13:45:58 +00:00
14 lines
187 B
C
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;
|
||
|
};
|
||
|
}
|
||
|
}
|