6 lines
87 B
C++
6 lines
87 B
C++
#pragma once
|
|
#include <random>
|
|
|
|
namespace Random {
|
|
int rand_int(int from, int to);
|
|
}
|