2022-11-03 21:29:08 -06:00
|
|
|
#ifndef ARC_GRAPHICS_CONFIG_H_
|
|
|
|
|
#define ARC_GRAPHICS_CONFIG_H_
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
2022-11-07 02:23:53 -07:00
|
|
|
|
|
|
|
|
#include "arc/std/config.h"
|
|
|
|
|
#include "arc/graphics/renderer.h"
|
2022-11-03 21:29:08 -06:00
|
|
|
|
2022-11-07 02:23:53 -07:00
|
|
|
void ARC_GraphicsConfig_Init(ARC_Config *config, ARC_Renderer *renderer);
|
2022-11-03 21:29:08 -06:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif // !ARC_GRAPHICS_CONFIG_H_
|