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

14 lines
190 B
C++

#pragma once
namespace diablo2 {
namespace structures {
struct gfxdata;
class d2_cmp {
public:
static char* get_base();
static bool init_gfx_data(gfxdata* gfxdata);
};
}
}