Nilorea Library
C utilities for networking, threading, graphics
Loading...
Searching...
No Matches
ex_fluid_config.h

Config file for ex_fluid.

Config file for ex_fluid

Author
Castagnier Mickael aka Gull Ra Driel
Version
1.0
Date
29/12/2021
#ifndef _N_FLUID_CONFIG
#define _N_FLUID_CONFIG
#ifdef __cplusplus
extern "C" {
#endif
int load_app_state(char* state_filename, int* WIDTH, int* HEIGHT, bool* fullscreen, char** bgmusic, double* drawFPS, double* logicFPS, N_FLUID* fluid, int* threaded);
#ifdef __cplusplus
}
#endif
#endif
double drawFPS
Definition ex_fluid.c:63
bool fullscreen
Definition ex_fluid.c:74
char * bgmusic
Definition ex_fluid.c:75
double logicFPS
Definition ex_fluid.c:64
int load_app_state(char *state_filename, int *WIDTH, int *HEIGHT, bool *fullscreen, char **bgmusic, double *drawFPS, double *logicFPS, N_FLUID *fluid, int *threaded)
Load application state from a config file.
#define WIDTH
Definition ex_gui.c:36
#define HEIGHT
Definition ex_gui.c:37
structure of a fluid
Definition n_fluids.h:69
Fluid management port from "How to write an Eulerian fluid simulator with 200 lines of code",...