NerfUS game coordinator for the Nerf gun firing range

Dependencies:   HardwareInterface mbed-rtos mbed

Fork of NerfUS by NerfUS

Committer:
Ismael Balafrej
Date:
Fri Mar 17 17:19:42 2017 -0400
Branch:
PlayableGame
Revision:
17:48474266a361
Parent:
16:5e6c695468b6
First Commit of PlayableGame

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Maxime Dupuis 16:5e6c695468b6 1 #ifndef MOCK_RANDOM_NUMBER_GENERATOR_HPP
Maxime Dupuis 16:5e6c695468b6 2 #define MOCK_RANDOM_NUMBER_GENERATOR_HPP
Maxime Dupuis 16:5e6c695468b6 3
Maxime Dupuis 16:5e6c695468b6 4 class MockRandomNumberGenerator : public RandomNumberGenerator
Maxime Dupuis 16:5e6c695468b6 5 {
Maxime Dupuis 16:5e6c695468b6 6 public:
Maxime Dupuis 16:5e6c695468b6 7 MOCK_METHOD2(get, int(int min, int max));
Maxime Dupuis 16:5e6c695468b6 8 };
Maxime Dupuis 16:5e6c695468b6 9
Maxime Dupuis 16:5e6c695468b6 10 #endif