diff options
| author | Physick <96335032+DegustatorPonos@users.noreply.github.com> | 2026-07-07 19:05:45 +0500 |
|---|---|---|
| committer | Physick <96335032+DegustatorPonos@users.noreply.github.com> | 2026-07-07 19:05:45 +0500 |
| commit | 1a095735b1d8e7ade61ac4f936032e0c9dcc044f (patch) | |
| tree | d4b61b54b170cf47e88381095baedb03eb26433d /src/resources/resources.c | |
| parent | de52d82dc62db5d6883cf870a2c3cdc08a178b4f (diff) | |
Resources loading
Diffstat (limited to 'src/resources/resources.c')
| -rw-r--r-- | src/resources/resources.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/resources/resources.c b/src/resources/resources.c new file mode 100644 index 0000000..55bf3ce --- /dev/null +++ b/src/resources/resources.c @@ -0,0 +1,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; } + |
