|
5 | 5 | public class BidMachineiOSUnityBridge : MonoBehaviour |
6 | 6 | { |
7 | 7 | [DllImport("__Internal")] |
8 | | - public static extern void BidMachineInitialize(string sellerId); |
| 8 | + private static extern void BidMachineInitialize(string sellerId); |
9 | 9 |
|
10 | 10 | [DllImport("__Internal")] |
11 | | - public static extern bool BidMachineIsInitialized(); |
| 11 | + private static extern bool BidMachineIsInitialized(); |
12 | 12 |
|
13 | 13 | [DllImport("__Internal")] |
14 | | - public static extern void BidMachineSetEndpoint(string url); |
| 14 | + private static extern void BidMachineSetEndpoint(string url); |
15 | 15 |
|
16 | 16 | [DllImport("__Internal")] |
17 | | - public static extern void BidMachineSetLoggingEnabled(bool logging); |
| 17 | + private static extern void BidMachineSetLoggingEnabled(bool logging); |
18 | 18 |
|
19 | 19 | [DllImport("__Internal")] |
20 | | - public static extern void BidMachineSetTestEnabled(bool test); |
| 20 | + private static extern void BidMachineSetTestEnabled(bool test); |
21 | 21 |
|
22 | 22 | [DllImport("__Internal")] |
23 | | - public static extern void BidMachineSetTargetingParams(string jsonString); |
| 23 | + private static extern void BidMachineSetTargetingParams(string jsonString); |
24 | 24 |
|
25 | 25 | [DllImport("__Internal")] |
26 | | - public static extern void BidMachineSetConsentConfig(string consentConfig, bool consent); |
| 26 | + private static extern void BidMachineSetConsentConfig(string consentConfig, bool consent); |
27 | 27 |
|
28 | 28 | [DllImport("__Internal")] |
29 | | - public static extern void BidMachineSetSubjectToGDPR(bool flag); |
| 29 | + private static extern void BidMachineSetSubjectToGDPR(bool flag); |
30 | 30 |
|
31 | 31 | [DllImport("__Internal")] |
32 | | - public static extern void BidMachineSetCoppa(bool coppa); |
| 32 | + private static extern void BidMachineSetCoppa(bool coppa); |
33 | 33 |
|
34 | 34 | [DllImport("__Internal")] |
35 | | - public static extern void BidMachineSetUSPrivacyString(string usPrivacyString); |
| 35 | + private static extern void BidMachineSetUSPrivacyString(string usPrivacyString); |
36 | 36 |
|
37 | 37 | [DllImport("__Internal")] |
38 | | - public static extern void BidMachineSetGPP(string gppString, int[] gppIds, int length); |
| 38 | + private static extern void BidMachineSetGPP(string gppString, int[] gppIds, int length); |
39 | 39 |
|
40 | 40 | [DllImport("__Internal")] |
41 | | - public static extern void BidMachineSetPublisher(string jsonString); |
| 41 | + private static extern void BidMachineSetPublisher(string jsonString); |
42 | 42 |
|
43 | 43 | public void Initialize(string sellerId) |
44 | 44 | { |
|
0 commit comments