Listener

// Listens to audio in the scene.
class RVAPI Listener
{
public:
    // Set listener gain.
    static void SetGain(float gain);

    // Set listener velocity vector.
    static void SetVel(const S3f &vel);

    // Set listener position.
    static void SetPos(const M4f &pos);
};