mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-28 23:27:45 +00:00
11 lines
196 B
C++
11 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 >() )
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|