mirror of
https://gitlab.com/hashborgir/d2tweaks-rnd2k.git
synced 2024-12-02 21:55: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);
|
||
|
};
|
||
|
}
|
||
|
}
|