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

17 lines
232 B
C++

#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;
};
}
}