// Copyright (C) 2009-present, Panagiotis Christopoulos Charitos and contributors. // All rights reserved. // Code licensed under the BSD License. // http://www.anki3d.org/LICENSE #include #include #include namespace anki { static std::random_device g_rd; thread_local static std::mt19937_64 g_randromGenerator(g_rd()); U64 getRandom() { return g_randromGenerator(); } } // end namespace anki