Fireset
Loading...
Searching...
No Matches
core.h
1// Copyright (c) 2025 Henrique Rodrigues Santos
2// Licensed under the MIT License
3// Repo: https://github.com/saintsHr/Fireset
4
5#pragma once
6
7#include "fireset/window.h"
8
9#include <GLFW/glfw3.h>
10#include <stdbool.h>
11
17
32bool fsInit(void);
33
45void fsExit(void);
46
void fsExit(void)
Shuts down the Fireset engine core.
Definition core.c:20
bool fsInit(void)
Initializes the Fireset engine core.
Definition core.c:11