mirror of
https://github.com/love2d/megasource.git
synced 2026-08-12 16:41:08 +02:00
18 lines
306 B
C++
18 lines
306 B
C++
|
|
#include "config.h"
|
|
|
|
#include "bformatdec.h"
|
|
#include "bs2b.h"
|
|
#include "device.h"
|
|
#include "front_stablizer.h"
|
|
#include "hrtf.h"
|
|
#include "mastering.h"
|
|
|
|
|
|
DeviceBase::DeviceBase(DeviceType type)
|
|
: Type{type}, mContexts{al::FlexArray<ContextBase*>::Create(0)}
|
|
{
|
|
}
|
|
|
|
DeviceBase::~DeviceBase() = default;
|