|
Fireset
|
Engine core lifecycle functions. More...
Functions | |
| bool | fsInit (void) |
| Initializes the Fireset engine core. | |
| void | fsExit (void) |
| Shuts down the Fireset engine core. | |
Engine core lifecycle functions.
| void fsExit | ( | void | ) |
Shuts down the Fireset engine core.
Releases all internal resources and shuts down third-party systems initialized by fsInit().
This function should be called once, at the very end of the program, after all engine usage has finished.
| bool fsInit | ( | void | ) |
Initializes the Fireset engine core.
This function must be called exactly once, at the very beginning of the program, before calling any other Fireset API function.
It initializes internal engine state and third-party dependencies such as the windowing system.
| true | Engine initialized successfully. |
| false | Initialization failed. No other Fireset function is safe to call. |