mirror of
				https://github.com/Laupetin/OpenAssetTools.git
				synced 2025-10-30 18:17:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			339 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			339 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <string>
 | |
| 
 | |
| enum class FastFileBlockType
 | |
| {
 | |
|     TEMP,
 | |
|     RUNTIME,
 | |
|     DELAY,
 | |
|     NORMAL
 | |
| };
 | |
| 
 | |
| class FastFileBlock
 | |
| {
 | |
| public:
 | |
|     std::string m_name;
 | |
|     unsigned m_index;
 | |
|     FastFileBlockType m_type;
 | |
|     bool m_is_default;
 | |
| 
 | |
|     FastFileBlock(std::string name, unsigned index, FastFileBlockType type, bool isDefault);
 | |
| };
 |