Files
Tower-Defense/include/misc/Random.h
2021-09-02 19:24:51 +02:00

13 lines
181 B
C++

#pragma once
#include <cstdint>
namespace td {
namespace utils {
void initRandomizer();
std::uint64_t getRandomNumber(std::uint64_t max);
} // namespace utils
} // namespace td