AudioDefs.h 383 B

123456789101112131415161718
  1. // Copyright (c) 2008-2023 the Urho3D project
  2. // License: MIT
  3. #pragma once
  4. #include "../Container/Str.h"
  5. namespace Urho3D
  6. {
  7. // SoundSource type defaults
  8. static const String SOUND_MASTER = "Master";
  9. static const String SOUND_EFFECT = "Effect";
  10. static const String SOUND_AMBIENT = "Ambient";
  11. static const String SOUND_VOICE = "Voice";
  12. static const String SOUND_MUSIC = "Music";
  13. }