borgware-2d/games/breakout/score.h

11 lines
129 B
C

#include <stdint.h>
#include "common.h"
#ifndef SCORE_H
#define SCORE_H
void score_add(uint8_t);
uint16_t score_get();
#endif