mirror of
https://github.com/overte-org/overte.git
synced 2025-08-12 23:40:00 +02:00
17 lines
298 B
C++
17 lines
298 B
C++
//
|
|
// AudioMixer.h
|
|
// hifi
|
|
//
|
|
// Created by Stephen Birarda on 8/22/13.
|
|
// Copyright (c) 2013 HighFidelity, Inc. All rights reserved.
|
|
//
|
|
|
|
#ifndef __hifi__AudioMixer__
|
|
#define __hifi__AudioMixer__
|
|
|
|
class AudioMixer {
|
|
public:
|
|
static void run();
|
|
};
|
|
|
|
#endif /* defined(__hifi__AudioMixer__) */
|