17 lines
268 B
C
17 lines
268 B
C
|
|
#ifndef ARC_FILES_CONFIG_H_
|
||
|
|
#define ARC_FILES_CONFIG_H_
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include "arc/std/config.h"
|
||
|
|
#include "arc/graphics/renderer.h"
|
||
|
|
|
||
|
|
void ARC_FilesConfig_Init(ARC_Config *config);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif // !ARC_FILES_CONFIG_H_
|