LeviLamina
Loading...
Searching...
No Matches
DataStoreSetCommandGroup.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/gui/oreui/binding/CommandGroupBase.h"
7#include "mc/client/gui/oreui/binding/methods/CallableImpl.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace Bedrock::DDUI { class DataStoreSyncClient; }
12// clang-format on
13
14namespace OreUI {
15
16class DataStoreSetCommandGroup : public ::OreUI::CommandGroupBase<::OreUI::DataStoreSetCommandGroup> {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, ::Bedrock::DDUI::DataStoreSyncClient*> mDataStore;
21 ::ll::TypedStorage<
22 8,
23 136,
24 ::OreUI::Detail::CallableImpl<void, ::std::string, ::std::string, ::std::string, ::std::string>>
25 mSetString;
26 ::ll::TypedStorage<8, 136, ::OreUI::Detail::CallableImpl<void, ::std::string, ::std::string, ::std::string, double>>
27 mSetNumber;
28 ::ll::TypedStorage<8, 136, ::OreUI::Detail::CallableImpl<void, ::std::string, ::std::string, ::std::string, bool>>
29 mSetBool;
30 ::ll::TypedStorage<8, 136, ::OreUI::Detail::CallableImpl<void, ::std::string, ::std::string, ::std::string>>
31 mButtonPress;
32 // NOLINTEND
33
34public:
35 // prevent constructor by default
36 DataStoreSetCommandGroup();
37
38public:
39 // virtual functions
40 // NOLINTBEGIN
41 virtual ~DataStoreSetCommandGroup() /*override*/ = default;
42 // NOLINTEND
43
44public:
45 // member functions
46 // NOLINTBEGIN
47 MCAPI explicit DataStoreSetCommandGroup(::Bedrock::DDUI::DataStoreSyncClient* dataStore);
48
49 MCAPI void buttonPress(::std::string dataStore, ::std::string property, ::std::string path);
50
51 MCAPI void setBool(::std::string dataStoreName, ::std::string property, ::std::string path, bool data);
52
53 MCAPI void setNumber(::std::string dataStoreName, ::std::string property, ::std::string path, double data);
54
55 MCAPI void setString(::std::string dataStoreName, ::std::string property, ::std::string path, ::std::string data);
56 // NOLINTEND
57
58public:
59 // static variables
60 // NOLINTBEGIN
61 MCAPI static ::std::add_lvalue_reference_t<char const[]> NAME();
62 // NOLINTEND
63
64public:
65 // constructor thunks
66 // NOLINTBEGIN
67 MCAPI void* $ctor(::Bedrock::DDUI::DataStoreSyncClient* dataStore);
68 // NOLINTEND
69
70public:
71 // vftables
72 // NOLINTBEGIN
73 MCNAPI static void** $vftable();
74 // NOLINTEND
75};
76
77} // namespace OreUI
Definition DataStoreSyncClient.h:15
Definition DataStoreSetCommandGroup.h:7
static MCAPI void ** $vftable()