diff options
author | tylermurphy534 <tylermurphy534@gmail.com> | 2022-09-24 21:16:13 -0400 |
---|---|---|
committer | tylermurphy534 <tylermurphy534@gmail.com> | 2022-09-24 21:16:13 -0400 |
commit | f81d611f0e298baffad68d83f208e2306fe38739 (patch) | |
tree | f42732149fe2bfb7d28e26ed36067d24fb21b30c /engine/xe_sound.hpp | |
parent | delete old files (diff) | |
download | minecraftvulkan-f81d611f0e298baffad68d83f208e2306fe38739.tar.gz minecraftvulkan-f81d611f0e298baffad68d83f208e2306fe38739.tar.bz2 minecraftvulkan-f81d611f0e298baffad68d83f208e2306fe38739.zip |
remove Xe From engine class names
Diffstat (limited to 'engine/xe_sound.hpp')
-rw-r--r-- | engine/xe_sound.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/xe_sound.hpp b/engine/xe_sound.hpp index b2a7a14..4b14589 100644 --- a/engine/xe_sound.hpp +++ b/engine/xe_sound.hpp @@ -11,12 +11,12 @@ namespace xe { -class XeSound { +class Sound { public: - XeSound(const std::string& filename); - ~XeSound(); + Sound(const std::string& filename); + ~Sound(); void play(); void stop(); |