mirror of
https://gitlab.com/drummyfish/anarch.git
synced 2025-01-30 23:00:16 -05:00
15 lines
248 B
C
15 lines
248 B
C
#ifndef _SFG_SETTINGS_H
|
|
#define _SFG_SETTINGS_H
|
|
|
|
#define SFG_FPS 60
|
|
#define SFG_RESOLUTION_X 1024
|
|
#define SFG_RESOLUTION_Y 768
|
|
|
|
#define SFG_DITHERED_SHADOW 1
|
|
|
|
#define SFG_RAYCASTING_MAX_STEPS 30
|
|
|
|
#define SFG_RAYCASTING_MAX_HITS 10
|
|
|
|
#endif // guard
|