d2tweaks-rnd2k/include/diablo2/d2lang.h

17 lines
262 B
C
Raw Permalink Normal View History

2024-04-17 03:45:38 +00:00
#pragma once
#include <cstdint>
#include <functional>
#include <diablo2/structures/unit.h>
namespace diablo2 {
namespace structures {
struct unit;
}
class d2_lang {
public:
static char* get_base();
static wchar_t* get_string_from_index(short);
};
}