Add MathEngineTest and Commects and clean ups

This commit is contained in:
2018-08-18 20:50:06 -04:00
parent bd3c111fa1
commit a815367c9d
52 changed files with 386 additions and 144 deletions
@@ -31,8 +31,7 @@ namespace AudioEngine {
/* Plays the sounds */
void SoundPlay();
/* Plays the music */
void MusicPlay();
void MusicPlay();
/// Set
/* Sets the rate */
@@ -40,8 +40,6 @@ namespace AudioEngine {
Mix_Music* mp_music;
unsigned char m_volume;/// = 255
};/// END CLASS DEFINITION cMusic
}/// END NAMESPACE DEFINITION AudioEngine
#endif/// END IFNDEF _CMUSIC_HPP_
@@ -79,13 +79,12 @@ namespace AudioEngine {
cString m_dir;/// = ""
cString m_fileName;/// = ""
unsigned char m_volume;/// = 255
unsigned char m_distance;/// = 100
unsigned char m_volume;// = 255
unsigned char m_distance;// = 100
short int m_angle;// = 0
long int m_channel;// = -1
long int m_loops;// = 0
short int m_angle;/// = 0
long int m_channel;/// = -1
long int m_loops;/// = 0
};/// END CLASS DEFINITION cSound
}/// END NAMESPACE DEFINITION AudioEngine
#endif/// END IFNDEF _CSOUND_HPP_