runtime/gfx: Fix linking, update code to C++11 and formatting

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2019-01-18 19:05:43 +01:00
parent 420744efd4
commit 077776b704
42 changed files with 227 additions and 324 deletions
+5 -5
View File
@@ -1,6 +1,4 @@
#ifndef GXMUSIC_H
#define GXMUSIC_H
#pragma once
class gxAudio;
@@ -21,14 +19,16 @@ class gxMusic {
/***** GX INTERFACE *****/
public:
//modifiers
void play();
void stop();
void setPaused(bool paused);
void setVolume(float volume);
//accessors
bool isPlaying() const;
};
#endif