mirror of
https://gitlab.com/hashborgir/d2tweaks-rnd2k.git
synced 2024-12-02 21:55:58 +00:00
23 lines
398 B
C++
23 lines
398 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace diablo2 {
|
|
namespace structures {
|
|
struct gfxcell;
|
|
|
|
struct cellfile {
|
|
int32_t version; //0x00
|
|
struct {
|
|
int16_t flags;
|
|
int8_t mylastcol;
|
|
int8_t mytabno : 1;
|
|
}; //0x04
|
|
int32_t format; //0x08
|
|
int32_t termination; //0x0C
|
|
int32_t numdirs; //0x10
|
|
int32_t numcells; //0x14
|
|
gfxcell* cells[255]; //0x18
|
|
};
|
|
}
|
|
} |