CommonLibVR
BSISoundCategory.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace RE
4 {
6  {
7  public:
8  inline static constexpr auto RTTI = RTTI_BSISoundCategory;
9  inline static constexpr auto VTABLE = VTABLE_BSISoundCategory;
10 
11  virtual ~BSISoundCategory(); // 00
12 
13  // add
14  virtual bool Matches(const BSISoundCategory* a_category) const = 0; // 01
15  [[nodiscard]] virtual float GetCategoryVolume() const = 0; // 02
16  virtual void SetCategoryVolume(float a_value) = 0; // 03
17  [[nodiscard]] virtual float GetCategoryFrequency() const = 0; // 04
18  virtual void SetCategoryFrequency(float a_value) = 0; // 05
19  [[nodiscard]] virtual std::uint16_t GetCategoryAttenuation() const = 0; // 06
20  virtual void SetCategoryAttenuation(std::uint16_t a_value) = 0; // 07
21  virtual void Unk_08(void) = 0; // 08
22  virtual void Unk_09(void) = 0; // 09
23  virtual void Unk_0A(void) = 0; // 0A
24  virtual void Unk_0B(void) = 0; // 0B
25  private:
26  KEEP_FOR_RE()
27  };
28  static_assert(sizeof(BSISoundCategory) == 0x8);
29 }
#define KEEP_FOR_RE()
Definition: PCH.h:713
Definition: BSISoundCategory.h:6
virtual void SetCategoryFrequency(float a_value)=0
static constexpr auto RTTI
Definition: BSISoundCategory.h:8
virtual ~BSISoundCategory()
virtual void SetCategoryAttenuation(std::uint16_t a_value)=0
virtual float GetCategoryFrequency() const =0
virtual void Unk_09(void)=0
virtual void Unk_0A(void)=0
virtual float GetCategoryVolume() const =0
virtual void Unk_0B(void)=0
virtual void SetCategoryVolume(float a_value)=0
virtual bool Matches(const BSISoundCategory *a_category) const =0
virtual std::uint16_t GetCategoryAttenuation() const =0
static constexpr auto VTABLE
Definition: BSISoundCategory.h:9
virtual void Unk_08(void)=0
Definition: AbsorbEffect.h:6
constexpr std::array< REL::ID, 1 > VTABLE_BSISoundCategory
Definition: Offsets_VTABLE.h:9053
constexpr REL::ID RTTI_BSISoundCategory(static_cast< std::uint64_t >(685282))