stuff-from-scratch/src/core/RandomUtils.h

11 lines
135 B
C
Raw Normal View History

2022-05-18 07:42:44 +00:00
#pragma once
#include <vector>
class RandomUtils
{
public:
static std::vector<unsigned> getRandomVecUnsigned(std::size_t size);
};