mirror of
https://github.com/rrika/cdcEngineDXHR.git
synced 2024-11-23 05:29:57 +00:00
24 lines
406 B
C++
24 lines
406 B
C++
#pragma once
|
|
#include "SoundPlex.h"
|
|
|
|
namespace cdc {
|
|
|
|
class SoundPlexCinematic : public SoundPlexSingleChild {
|
|
public:
|
|
SoundPlexCinematic(
|
|
void *data,
|
|
Controls *controls,
|
|
Controls3d *controls3d,
|
|
SoundOwner *owner)
|
|
:
|
|
SoundPlexSingleChild(controls, controls3d, owner)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
SoundPlex *Update(float) override { /*TODO*/ return nullptr; }
|
|
void End(EndType) override { /*TODO*/ }
|
|
};
|
|
|
|
}
|