summaryrefslogtreecommitdiff
path: root/indra/newview/rlvactions.h
blob: ac4fc733398c667ddba25f9e98b907d267d20cfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

// ============================================================================
// RlvActions - developer-friendly non-RLVa code facing class, use in lieu of RlvHandler whenever possible
//

class RlvActions
{
    // ================
    // Helper functions
    // ================
public:
    /*
     * Convenience function to check if RLVa is enabled without having to include rlvhandler.h
     */
    static bool isRlvEnabled();
};

// ============================================================================