cool-bun-demo/bun.h

11 lines
170 B
C

#ifndef __BUN_H__
#define __BUN_H__
#include "screen.h"
void setupBun();
void renderBun(int x, int y, struct CurrentScreen *currentScreen);
void teardownBun();
#endif