Safariminer 527b73afb5 rebase
2025-09-19 14:33:07 -04:00

14 lines
334 B
C++

#include "Fonts.h"
#include <raylib.h>
Font titleFont;
Font textFont;
Font smallFont;
LOADING_FUNC MassShoot::Fonts::LoadFonts()
{
titleFont = LoadFontEx("massshoot/fonts/title.ttf", 300, 0, 360);
textFont = LoadFontEx("massshoot/fonts/text.ttf", 300, 0, 360);
smallFont = LoadFontEx("massshoot/fonts/small.ttf", 300, 0, 360);
}