-
Notifications
You must be signed in to change notification settings - Fork 1
/
Features.hpp
55 lines (42 loc) · 955 Bytes
/
Features.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
//
// Features.hpp
// Maw Kit
//
// Created by Lluís Ulzurrun de Asanza Sàez on 17/02/16.
//
//
#ifndef Features_hpp
#define Features_hpp
namespace MK {
/**
* `Features` namespace holds constants defining which features are enabled and
* disabled.
*/
namespace Features {
/**
* Whether in-app purchases are enabled (`true`) or not.
*/
constexpr bool IAPKit = true;
/**
* Whether GameKit's leaderboards are enabled (`true`) or not.
*/
constexpr bool GameKitLeaderboards = true;
/**
* Whether GameKit's achievements are enabled (`true`) or not.
*/
constexpr bool GameKitAchievements = true;
/**
* Whether Ads are enabled (`true`) or not.
*/
constexpr bool AdKit = true;
/**
* Whether Analytics is enabled (`true`) or not.
*/
constexpr bool Analytics = true;
/**
* Whether Facebook integration is enabled (`true`) or not.
*/
constexpr bool Facebook = true;
}; // Features
}; // namespace MK
#endif /* Features_hpp */