22 lines
320 B
C
22 lines
320 B
C
#ifndef WATCH_H
|
|
#define WATCH_H
|
|
|
|
////////////////////////////////
|
|
//~ Layer dependencies
|
|
|
|
#include "../base/base.h"
|
|
#include "../platform/platform.h"
|
|
inline void W_StartupDeps(void)
|
|
{
|
|
BaseMain();
|
|
P_Main();
|
|
}
|
|
|
|
////////////////////////////////
|
|
//~ Layer headers
|
|
|
|
#include "watch_core.h"
|
|
void W_Main(void);
|
|
|
|
#endif
|