18 lines
		
	
	
	
		
			209 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			209 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <ecs/uuid.hpp>
 | 
						|
 | 
						|
namespace lt {
 | 
						|
 | 
						|
struct UUIDComponent
 | 
						|
{
 | 
						|
	UUIDComponent(UUID _uuid): uuid(_uuid)
 | 
						|
	{
 | 
						|
	}
 | 
						|
 | 
						|
	UUIDComponent(const UUIDComponent &) = default;
 | 
						|
 | 
						|
	UUID uuid;
 | 
						|
};
 | 
						|
 | 
						|
} // namespace lt
 |