pcb and initial code from https://github.com/das-labor/borgware-2d.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
265 B
17 lines
265 B
/*
|
|
* kart.h
|
|
*
|
|
* Created on: 07.02.2014
|
|
* Author: Stefan Kinzel
|
|
*/
|
|
|
|
#ifndef KART_H_
|
|
#define KART_H_
|
|
|
|
void kart_game(void);
|
|
|
|
void drive(void);
|
|
void save_borders(uint8_t middle, uint8_t width);
|
|
uint8_t check_collision(uint8_t carpos);
|
|
|
|
#endif /* KART_H_ */
|
|
|