NerfUS game coordinator for the Nerf gun firing range

Dependencies:   HardwareInterface mbed-rtos mbed

Fork of NerfUS by NerfUS

include/RandomNumberGenerator.hpp

Committer:
Maxime Dupuis
Date:
2017-02-23
Revision:
16:5e6c695468b6

File content as of revision 16:5e6c695468b6:

#ifndef RANDOM_NUMBER_GENERATOR_HPP
#define RANDOM_NUMBER_GENERATOR_HPP

class RandomNumberGenerator
{
    public:
        virtual int get(int min, int max);
};

#endif