runtime/lib: C++ify

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2019-01-18 21:26:57 +01:00
parent 3afa84df85
commit 09be5488e1
33 changed files with 191 additions and 262 deletions
+3 -7
View File
@@ -1,9 +1,7 @@
#ifndef BBAUDIO_H
#define BBAUDIO_H
#pragma once
#include "bbsys.hpp"
#include "gxaudio.hpp"
#include <gxaudio.hpp>
extern gxAudio* gx_audio;
@@ -23,5 +21,3 @@ void bbChannelPitch(gxChannel* channel, int pitch);
void bbChannelVolume(gxChannel* channel, float volume);
void bbChannelPan(gxChannel* channel, float pan);
int bbChannelPlaying(gxChannel* channel);
#endif