mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-13 12:33:20 +02:00
12 lines
198 B
C++
12 lines
198 B
C++
#ifndef BOSS_RANDOM_ENGINE_HPP
|
|
#define BOSS_RANDOM_ENGINE_HPP
|
|
|
|
#include<random>
|
|
|
|
namespace Boss {
|
|
|
|
extern std::default_random_engine random_engine;
|
|
|
|
}
|
|
|
|
#endif /* !defined(BOSS_RANDOM_ENGINE_HPP) */
|