This code contains the game Starship designed for the STM32F429i-DISC1 board. It requires a keyboard to play.

Dependencies:   Starship LCD_DISCO_F429ZI USBHost mbed

Dependents:   Starship

RandomVar.h

Committer:
Oshyrath
Date:
2017-11-17
Revision:
1:527a11035e0b

File content as of revision 1:527a11035e0b:

#ifndef __RANDVAR
#define __RANDVAR
#include <stdlib.h>
#include <stdint.h>
int8_t probabilityOfSuccess(float prob);
int randomInt(int min,int max);
#endif