mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-01 23:33:33 +00:00
16 lines
240 B
C++
16 lines
240 B
C++
#ifndef __URDE_CHUDENERGYINTERFACE_HPP__
|
|
#define __URDE_CHUDENERGYINTERFACE_HPP__
|
|
|
|
namespace urde
|
|
{
|
|
|
|
class CHudEnergyInterfaceBall
|
|
{
|
|
public:
|
|
void Update(float dt, float energyLowPulse);
|
|
};
|
|
|
|
}
|
|
|
|
#endif // __URDE_CHUDENERGYINTERFACE_HPP__
|