cool-bun-demo/bun.h

11 lines
170 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();
2024-05-29 11:57:08 +00:00
void renderBun(int x, int y, struct CurrentScreen *currentScreen);
2024-05-28 12:02:28 +00:00
void teardownBun();
#endif