Skip to content

Commit

Permalink
BLUGA-GRAPHICS: Fix ;
Browse files Browse the repository at this point in the history
  • Loading branch information
Saverio976 committed Nov 1, 2023
1 parent d60bad2 commit 2742cc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/B-luga-graphics/src/RaylibImpl/Audio/Audio.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Raylib {
// Sounds
class SoundImpl : public Sound {
public:
SoundImpl(const std::string& fileName, float volume)
SoundImpl(const std::string& fileName, float volume);

bool isReady() const ovveride;

Expand Down Expand Up @@ -54,7 +54,7 @@ namespace Raylib {

class MusicImpl : public Music {
public:
MusicImpl(const std::string& fileName, float volume)
MusicImpl(const std::string& fileName, float volume);

void unload() ovveride;

Expand Down

0 comments on commit 2742cc6

Please sign in to comment.