14 lines
		
	
	
	
		
			342 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			342 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include <ecs/uuid.hpp>
 | |
| 
 | |
| namespace lt {
 | |
| 
 | |
| std::mt19937_64 UUID::s_engine = std::mt19937_64(std::random_device()());
 | |
| 
 | |
| std::uniform_int_distribution<uint64_t>
 | |
|     UUID::s_distribution = std::uniform_int_distribution<uint64_t> {};
 | |
| 
 | |
| UUID::UUID(uint64_t uuid /* = -1 */): m_uuid(uuid == -1 ? s_distribution(s_engine) : uuid)
 | |
| {
 | |
| }
 | |
| 
 | |
| } // namespace lt
 |