summaryrefslogtreecommitdiff
path: root/src/resources/resources.c
blob: 55bf3ce5dc91ca57f3514b69c54f9d553966c7a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "resources.h"
#include <stddef.h>
#include <raylib.h>

Font MainFont;

void LoadResources() {
    MainFont = LoadFontEx("assets/coolvetica.ttf", 100, NULL, 0);
}

Font *GetMainFont() { return &MainFont; }