power_play/src/inc/inc_core.c
2025-07-30 18:28:23 -05:00

20 lines
522 B
C

/* This is the file that actually includes binary data meant to be embedded in
* the executable. Embedded files should be added as dependencies to this source
* file via the build system to ensure this translation unit is recompiled upon
* changes to an embedded file. */
#if RESOURCES_EMBEDDED
IncbinInclude(res_tar, IncbinDir "res.tar");
String INC_GetResTar(void)
{
return IncbinGet(res_tar);
}
#endif
IncbinInclude(dxc_tar, IncbinDir "dxc.tar");
String INC_GetDxcTar(void)
{
return IncbinGet(dxc_tar);
}