NerfUS game coordinator for the Nerf gun firing range

Dependencies:   HardwareInterface mbed-rtos mbed

Fork of NerfUS by NerfUS

source/RandomNumberGenerator.cpp

Committer:
Maxime Dupuis
Date:
2017-02-23
Revision:
16:5e6c695468b6
Child:
17:48474266a361

File content as of revision 16:5e6c695468b6:

#include "RandomNumberGenerator.hpp"

int RandomNumberGenerator::get(int min, int max)
{
    //TODO: Implement this. For tests, inject a known seed in the constructor
    //(instead of "time(NULL)", which we might use in the real app)
    return 42;
}