d2tweaks-rnd2k/include/diablo2/d2cmp.h

14 lines
190 B
C
Raw Normal View History

2024-04-17 03:45:38 +00:00
#pragma once
namespace diablo2 {
namespace structures {
struct gfxdata;
class d2_cmp {
public:
static char* get_base();
static bool init_gfx_data(gfxdata* gfxdata);
};
}
}