LeviLamina
Loading...
Searching...
No Matches
DataStoreSyncServer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/scripting/data_sync/DataStoreSync.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Bedrock::DDUI { struct DataStoreUpdate; }
11// clang-format on
12
13namespace Bedrock::DDUI {
14
15class DataStoreSyncServer : public ::Bedrock::DDUI::DataStoreSync {
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 DataStoreSyncServer& operator=(DataStoreSyncServer const&);
25 DataStoreSyncServer(DataStoreSyncServer const&);
26 DataStoreSyncServer();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual ~DataStoreSyncServer() /*override*/ = default;
32
33 virtual void clear(::std::string const& datastoreName, bool addToOutgoingChanges) /*override*/;
34
35 virtual void assertAppropriateThread() const /*override*/;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
42
44 ::std::string const& dataStoreName,
45 ::std::string const& propertyName,
46 ::std::string const& path
47 );
48
50 ::std::string const& dataStoreName,
51 ::std::string const& propertyName,
52 ::std::string const& path,
53 bool value
54 );
55 // NOLINTEND
56
57public:
58 // constructor thunks
59 // NOLINTBEGIN
60 MCNAPI_S void* $ctor();
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66 MCNAPI void $clear(::std::string const& datastoreName, bool addToOutgoingChanges);
67
68 MCNAPI void $assertAppropriateThread() const;
69
70
71 // NOLINTEND
72
73public:
74 // vftables
75 // NOLINTBEGIN
76 MCNAPI static void** $vftable();
77 // NOLINTEND
78};
79
80} // namespace Bedrock::DDUI
MCAPI void $clear(::std::string const &datastoreName, bool addToOutgoingChanges)
MCAPI void $assertAppropriateThread() const
MCAPI void setPropertyUpdateAllowed(::std::string const &dataStoreName, ::std::string const &propertyName, ::std::string const &path, bool value)
MCAPI void applyUpdate(::Bedrock::DDUI::DataStoreUpdate const &change)
MCAPI bool canClientUpdateProperty(::std::string const &dataStoreName, ::std::string const &propertyName, ::std::string const &path)
static MCAPI void ** $vftable()
Definition DataStoreSync.h:18
Definition DataStoreUpdate.h:7
Definition Alias.h:14