mirror of
https://gitlab.com/hashborgir/d2tweaks-rnd2k.git
synced 2024-11-30 12:45:58 +00:00
14 lines
190 B
C++
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);
|
|
};
|
|
}
|
|
} |