passage/gamma256/gameSource/score.h
2025-10-03 02:19:59 -04:00

19 lines
239 B
C

#include <stdint.h>
typedef uint32_t Uint32;
void initScore();
int getScoreHeight();
// draws score in upper-right corner of image
void drawScore( Uint32 *inImage, int inWidth, int inHeight, int inScore );
void destroyScore();