stuff-from-scratch/src/core/RandomUtils.h
2022-05-18 08:42:44 +01:00

10 lines
135 B
C++

#pragma once
#include <vector>
class RandomUtils
{
public:
static std::vector<unsigned> getRandomVecUnsigned(std::size_t size);
};