mirror of
				https://github.com/AxioDL/metaforce.git
				synced 2025-10-27 15:30:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			272 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			272 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "Runtime/World/CHealthInfo.hpp"
 | |
| 
 | |
| #include "Runtime/Streams/CInputStream.hpp"
 | |
| namespace metaforce {
 | |
| 
 | |
| CHealthInfo::CHealthInfo(CInputStream& in) {
 | |
|   in.ReadLong();
 | |
|   x0_health = in.ReadFloat();
 | |
|   x4_knockbackResistance = in.ReadFloat();
 | |
| }
 | |
| 
 | |
| } // namespace metaforce
 |