You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
443 B
34 lines
443 B
|
7 years ago
|
#pragma once
|
||
|
|
|
||
|
|
#include "devilution.h"
|
||
|
|
|
||
|
|
#include <SDL_ttf.h>
|
||
|
|
|
||
|
|
#include "DiabloUI/art.h"
|
||
|
|
|
||
|
|
namespace dvl {
|
||
|
|
|
||
|
|
enum _artFontTables {
|
||
|
|
AFT_SMALL,
|
||
|
|
AFT_MED,
|
||
|
|
AFT_BIG,
|
||
|
|
AFT_HUGE,
|
||
|
|
};
|
||
|
|
|
||
|
|
enum _artFontColors {
|
||
|
|
AFC_SILVER,
|
||
|
|
AFC_GOLD,
|
||
|
|
};
|
||
|
|
|
||
|
|
extern TTF_Font *font;
|
||
|
|
extern BYTE *FontTables[4];
|
||
|
|
extern Art ArtFonts[4][2];
|
||
|
|
|
||
|
|
void LoadArtFonts();
|
||
|
|
void UnloadArtFonts();
|
||
|
|
|
||
|
|
void LoadTtfFont();
|
||
|
|
void UnloadTtfFont();
|
||
|
|
|
||
|
|
} // namespace dvl
|