NerfUS game coordinator for the Nerf gun firing range

Dependencies:   HardwareInterface mbed-rtos mbed

Fork of NerfUS by NerfUS

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers RandomNumberGenerator.hpp Source File

RandomNumberGenerator.hpp

00001 #ifndef RANDOM_NUMBER_GENERATOR_HPP
00002 #define RANDOM_NUMBER_GENERATOR_HPP
00003 
00004 class RandomNumberGenerator
00005 {
00006     public:
00007         virtual int get(int min, int max);
00008 };
00009 
00010 #endif
00011