power_play/src/watch/watch.h
2025-08-05 12:00:39 -05:00

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