#ifndef RANDOMICO_H #define RANDOMICO_H #include #include #include class Randomico { public: Randomico(int min, int max); void Muda_Intervalo(int min, int max); int Valor(); void Gera_Seed(); protected: int min; int max; }; #endif