mirror of https://github.com/AxioDL/metaforce.git
20 lines
512 B
C++
20 lines
512 B
C++
#ifndef __URDE_CENERGYDRAINSOURCE_HPP__
|
|
#define __URDE_CENERGYDRAINSOURCE_HPP__
|
|
|
|
#include "RetroTypes.hpp"
|
|
|
|
namespace urde
|
|
{
|
|
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; }
|
|
};
|
|
}
|
|
#endif // __URDE_CENERGYDRAINSOURCE_HPP__
|