LeviLamina
Loading...
Searching...
No Matches
IAppPlatform.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/social/MultiplayerServiceIdentifier.h"
7#include "mc/deps/core/file/PathBuffer.h"
8#include "mc/deps/core/platform/ARVRPlatform.h"
9#include "mc/deps/core/platform/BuildPlatform.h"
10#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
11
13public:
14 // virtual functions
15 // NOLINTBEGIN
16 // vIndex: 0
17 virtual ~IAppPlatform() /*override*/;
18
19 // vIndex: 1
20 virtual bool restartRequested() = 0;
21
22 // vIndex: 2
23 virtual ::Core::PathBuffer<::std::string> getLoggingPath() const = 0;
24
25 // vIndex: 3
26 virtual bool isLowMemoryDevice() const = 0;
27
28 // vIndex: 4
29 virtual bool isLowPhysicalMemoryDevice() const = 0;
30
31 // vIndex: 5
32 virtual bool isRealmsEnabled() const = 0;
33
34 // vIndex: 6
35 virtual void initAppPlatformNetworkSettings() = 0;
36
37 // vIndex: 7
38 virtual int const numberOfThrottledTreatmentPacksToImportPerMinute() const = 0;
39
40 // vIndex: 8
41 virtual bool const areTreatmentPacksThrottled() const = 0;
42
43 // vIndex: 9
44 virtual bool isNetworkEnabled(bool) const = 0;
45
46 // vIndex: 10
47 virtual bool isNetworkAvailable() const = 0;
48
49 // vIndex: 11
50 virtual bool isLANAvailable() const = 0;
51
52 // vIndex: 12
53 virtual bool isLANAllowed() const = 0;
54
55 // vIndex: 13
56 virtual bool isInternetAvailable() const = 0;
57
58 // vIndex: 14
59 virtual bool multiplayerRequiresPremiumAccess() const = 0;
60
61 // vIndex: 15
62 virtual bool multiplayerRequiresUGCEnabled() const = 0;
63
64 // vIndex: 16
65 virtual ::BuildPlatform getBuildPlatform() const = 0;
66
67 // vIndex: 17
68 virtual ::ARVRPlatform getARVRPlatform() const = 0;
69
70 // vIndex: 18
71 virtual ::std::vector<::Social::MultiplayerServiceIdentifier>
72 getBroadcastingMultiplayerServiceIds(bool, bool) const = 0;
73
74 // vIndex: 19
75 virtual uint64 getLowPhysicalMemoryThreshold() const = 0;
76
77 // vIndex: 20
78 virtual uint64 getTotalPhysicalMemory() const = 0;
79 // NOLINTEND
80
81public:
82 // destructor thunk
83 // NOLINTBEGIN
84 MCFOLD void $dtor();
85 // NOLINTEND
86
87public:
88 // virtual function thunks
89 // NOLINTBEGIN
90
91 // NOLINTEND
92};
Definition EnableNonOwnerReferences.h:7
Definition IAppPlatform.h:12