mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 13:26:38 +00:00 
			
		
		
		
	To be able to use ccache. Also fix compilation errors appeared due to absence of precompiled headers.
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			520 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			520 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef OPENMW_COMPONENTS_DETOURNAVIGATOR_COMMULATIVEAABB_H
 | |
| #define OPENMW_COMPONENTS_DETOURNAVIGATOR_COMMULATIVEAABB_H
 | |
| 
 | |
| #include <BulletCollision/Gimpact/btBoxCollision.h>
 | |
| 
 | |
| #include <cstddef>
 | |
| 
 | |
| namespace DetourNavigator
 | |
| {
 | |
|     class CommulativeAabb
 | |
|     {
 | |
|     public:
 | |
|         explicit CommulativeAabb(std::size_t lastChangeRevision, const btAABB& aabb);
 | |
| 
 | |
|         bool update(std::size_t lastChangeRevision, const btAABB& aabb);
 | |
| 
 | |
|     private:
 | |
|         std::size_t mLastChangeRevision;
 | |
|         btAABB mAabb;
 | |
|     };
 | |
| }
 | |
| 
 | |
| #endif
 |