d2tweaks-rnd2k/include/diablo2/structures/client_unit_list.h
2024-04-16 21:45:38 -06:00

12 lines
149 B
C++

#pragma once
namespace diablo2 {
namespace structures {
struct unit;
struct client_unit_list {
unit* unit_list[5][128]; //0x1120
};
}
}