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

20 lines
280 B
C

#ifndef BITBUFF_H
#define BITBUFF_H
////////////////////////////////
//~ Layer dependencies
#include "../base/base.h"
inline void BB_StartupDeps(void)
{
BaseMain();
}
////////////////////////////////
//~ Layer headers
#include "bitbuff_core.h"
void BB_Main(void);
#endif