13 lines
157 B
C
13 lines
157 B
C
#ifndef BLK_BOX_H
|
|
#define BLK_BOX_H
|
|
|
|
struct BlkBoxInitConfig {
|
|
// nothing for now...
|
|
};
|
|
|
|
|
|
|
|
void init_blk_box(BlkBoxInitConfig cfg);
|
|
|
|
#endif // BLK_BOX_H
|