cool-bun-demo/bun.h

11 lines
166 B
C
Raw Normal View History

2024-05-28 12:02:28 +00:00
#ifndef __BUN_H__
#define __BUN_H__
#include "screen.h"
void setupBun();
void renderBun(int x, int y, struct ScreenSetup *screenSetup);
void teardownBun();
#endif