27 lines
433 B
C
27 lines
433 B
C
#ifndef PLAYBACK_H
|
|
#define PLAYBACK_H
|
|
|
|
////////////////////////////////
|
|
//~ Layer dependencies
|
|
|
|
#include "../base/base.h"
|
|
#include "../platform/platform.h"
|
|
#include "../mixer/mixer.h"
|
|
inline void PB_StartupDeps(void)
|
|
{
|
|
BaseMain();
|
|
P_Main();
|
|
MIX_Main();
|
|
}
|
|
|
|
////////////////////////////////
|
|
//~ Layer headers
|
|
|
|
#include "playback_core.h"
|
|
#if PlatformIsWindows
|
|
# include "playback_win32.h"
|
|
#endif
|
|
void PB_Main(void);
|
|
|
|
#endif
|