summaryrefslogtreecommitdiff
path: root/src/resources/resources.c
blob: 031ee2517fcc949d56ed0e1839df51e9589c9fe8 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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; }