LeviLamina
Loading...
Searching...
No Matches
DataStoreQueryNumber.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/oreui/binding/QueryBase.h"
7#include "mc/client/gui/oreui/binding/properties/Property.h"
8#include "mc/deps/core/utility/pub_sub/Subscription.h"
9
10// auto generated forward declare list
11// clang-format off
12namespace Bedrock::DDUI { class DataStoreSyncClient; }
13namespace OreUI { class ClientDependencies; }
14namespace OreUI { class GameDependencies; }
15// clang-format on
16
17namespace OreUI {
18
19class DataStoreQueryNumber : public ::OreUI::QueryBase<::OreUI::DataStoreQueryNumber> {
20public:
21 // member variables
22 // NOLINTBEGIN
23 ::ll::TypedStorage<8, 16, ::Bedrock::PubSub::Subscription> mSubscription;
24 ::ll::TypedStorage<8, 184, ::OreUI::Property<::std::optional<double>>> mValue;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 DataStoreQueryNumber();
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI DataStoreQueryNumber(
35 ::Bedrock::DDUI::DataStoreSyncClient* dataStore,
36 ::std::string dataStoreName,
37 ::std::string propertyName,
38 ::std::string path
39 );
40
41 MCAPI DataStoreQueryNumber(
42 ::OreUI::GameDependencies const& client,
43 ::OreUI::ClientDependencies const& dataStoreName,
44 ::std::string propertyName,
45 ::std::string path,
46 ::std::string
47 );
48 // NOLINTEND
49
50public:
51 // constructor thunks
52 // NOLINTBEGIN
53 MCAPI void* $ctor(
54 ::Bedrock::DDUI::DataStoreSyncClient* dataStore,
55 ::std::string dataStoreName,
56 ::std::string propertyName,
57 ::std::string path
58 );
59
60 MCAPI void* $ctor(
61 ::OreUI::GameDependencies const& client,
62 ::OreUI::ClientDependencies const& dataStoreName,
63 ::std::string propertyName,
64 ::std::string path,
65 ::std::string
66 );
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCNAPI static void** $vftableForPropertyObject();
73
74 MCNAPI static void** $vftableForIQuery();
75 // NOLINTEND
76};
77
78} // namespace OreUI
Definition DataStoreSyncClient.h:7
Definition ClientDependencies.h:7
Definition DataStoreQueryNumber.h:7
static MCAPI void ** $vftableForIQuery()
static MCAPI void ** $vftableForPropertyObject()
Definition GameDependencies.h:7