2022-12-16 17:22:17 +00:00
|
|
|
#pragma once
|
|
|
|
#include "SoundPlex.h"
|
|
|
|
|
|
|
|
namespace cdc {
|
|
|
|
|
2022-12-17 21:19:00 +00:00
|
|
|
class SoundPlexEffect : public SoundPlexSingleChild {
|
2022-12-16 17:22:17 +00:00
|
|
|
public:
|
|
|
|
SoundPlexEffect(
|
|
|
|
void *data,
|
|
|
|
Controls *controls,
|
|
|
|
Controls3d *controls3d,
|
|
|
|
SoundOwner *owner)
|
|
|
|
:
|
2022-12-17 21:19:00 +00:00
|
|
|
SoundPlexSingleChild(controls, controls3d, owner)
|
2022-12-16 17:22:17 +00:00
|
|
|
{
|
|
|
|
// TODO
|
|
|
|
}
|
2022-12-22 18:49:25 +00:00
|
|
|
|
|
|
|
SoundPlex *Update(float) override { /*TODO*/ return nullptr; }
|
|
|
|
void End(EndType) override { /*TODO*/ }
|
2022-12-16 17:22:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|