mirror of
				https://github.com/AxioDL/metaforce.git
				synced 2025-10-27 15:30:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			355 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			355 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "Runtime/RetroTypes.hpp"
 | |
| 
 | |
| namespace metaforce {
 | |
| 
 | |
| class CScannableParameters {
 | |
|   CAssetId x0_scanId;
 | |
| 
 | |
| public:
 | |
|   constexpr CScannableParameters() = default;
 | |
|   constexpr explicit CScannableParameters(CAssetId id) : x0_scanId(id) {}
 | |
|   [[nodiscard]] constexpr CAssetId GetScanId() const { return x0_scanId; }
 | |
| };
 | |
| } // namespace metaforce
 |