mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-05-14 15:51:21 +00:00
18 lines
248 B
C++
18 lines
248 B
C++
#ifndef CRUMBLEGENERATOR_HPP
|
|
#define CRUMBLEGENERATOR_HPP
|
|
|
|
#include "CRumbleVoice.hpp"
|
|
|
|
namespace pshag
|
|
{
|
|
class CRumbleGenerator
|
|
{
|
|
public:
|
|
CRumbleGenerator();
|
|
void Update(float);
|
|
void HardStopAll();
|
|
};
|
|
}
|
|
|
|
#endif // CRUMBLEGENERATOR_HPP
|