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

17 lines
232 B
C
Raw Normal View History

2024-04-17 03:45:38 +00:00
#pragma once
#include <cstdint>
namespace diablo2 {
namespace structures {
struct gfxcell {
int32_t version;
int32_t width;
int32_t height;
int32_t offset_x;
int32_t offset_y;
void* fram_pixel_data;
};
}
}