mirror of
				https://github.com/AxioDL/metaforce.git
				synced 2025-10-27 15:30:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			428 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			428 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "Runtime/RetroTypes.hpp"
 | |
| 
 | |
| namespace metaforce {
 | |
| class CEnergyDrainSource {
 | |
|   TUniqueId x0_source;
 | |
|   float x4_intensity;
 | |
| 
 | |
| public:
 | |
|   CEnergyDrainSource(TUniqueId src, float intensity);
 | |
|   TUniqueId GetEnergyDrainSourceId() const { return x0_source; }
 | |
|   void SetEnergyDrainIntensity(float in) { x4_intensity = in; }
 | |
|   float GetEnergyDrainIntensity() const { return x4_intensity; }
 | |
| };
 | |
| } // namespace metaforce
 |