mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-11 21:17:45 +00:00
10 lines
196 B
C++
10 lines
196 B
C++
#include "RNGMgr.h"
|
|
#include <Logging/Logger.h>
|
|
|
|
Sapphire::World::Manager::RNGMgr::RNGMgr( FrameworkPtr pFw ) :
|
|
BaseManager( pFw ),
|
|
m_engine( *engineSeed< std::mt19937::state_size >() )
|
|
{
|
|
|
|
}
|
|
|